Compare commits

...

2 Commits

Author SHA1 Message Date
Giulio De Pasquale
c3d56f0f90 helix: Added black python formatter 2023-02-15 12:49:01 -08:00
Giulio De Pasquale
69903f42d7 flake: Added giulioX64NoSSH config 2023-02-15 12:38:50 -08:00
2 changed files with 8 additions and 2 deletions

View File

@ -18,7 +18,7 @@
wrapPkgsSystem = { system }:
import nixpkgs rec {
inherit system;
unstablePkgs = wrapUnstablePkgsSystem { inherit system; };
config.allowUnfree = true;
overlays = [
@ -29,7 +29,7 @@
wrapUnstablePkgsSystem = { system }:
import nixos-unstable {
inherit system;
config.allowUnfree = true;
};
@ -91,6 +91,7 @@
name = "giulio";
roles = [ "ssh" ];
};
giulioX64NoSSH = utilsLinuxX64.user.mkHMUser { name = "giulio"; };
};
};
}

View File

@ -31,9 +31,14 @@
[[language]]
name = "nix"
formatter = { command = "nixpkgs-fmt" }
[[language]]
name = "python"
formatter = { command = "black", args = [ "-" ] }
'';
packages = with pkgs.unstablePkgs; [
black
helix
clang-tools
rust-analyzer