nix flake: add devShell
This commit is contained in:
parent
e24157a614
commit
f0d881de5d
13
flake.nix
13
flake.nix
@ -14,7 +14,6 @@
|
||||
};
|
||||
|
||||
outputs = inputs @ {
|
||||
self,
|
||||
nixpkgs,
|
||||
caps2esc,
|
||||
home-manager,
|
||||
@ -22,7 +21,9 @@
|
||||
peerix,
|
||||
sops-nix,
|
||||
...
|
||||
}: {
|
||||
}: let
|
||||
pkgs = nixpkgs.legacyPackages.x86_64-linux.pkgs;
|
||||
in {
|
||||
nixosConfigurations = rec {
|
||||
nixy = nixpkgs.lib.nixosSystem {
|
||||
system = "x86_64-linux";
|
||||
@ -53,5 +54,13 @@
|
||||
];
|
||||
};
|
||||
};
|
||||
|
||||
devShell.x86_64-linux = pkgs.mkShell {
|
||||
buildInputs = with pkgs; [sops];
|
||||
shellHook = ''
|
||||
echo "Configuring NixOS!"
|
||||
'';
|
||||
};
|
||||
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user