Add dev shells
Signed-off-by: Nikolaos Karaolidis <nick@karaolidis.com>
This commit is contained in:
@@ -33,5 +33,4 @@
|
||||
config.environment.persistence."/persist"."/var/lib/cups/printers.conf".mount
|
||||
];
|
||||
};
|
||||
|
||||
}
|
||||
|
12
hosts/common/system/shells/nix/default.nix
Normal file
12
hosts/common/system/shells/nix/default.nix
Normal file
@@ -0,0 +1,12 @@
|
||||
{ pkgs, ... }:
|
||||
pkgs.mkShell {
|
||||
packages = with pkgs; [
|
||||
nix
|
||||
nil
|
||||
nixpkgs-fmt
|
||||
];
|
||||
|
||||
shellHook = ''
|
||||
exec $SHELL
|
||||
'';
|
||||
}
|
8
hosts/common/system/shells/python/default.nix
Normal file
8
hosts/common/system/shells/python/default.nix
Normal file
@@ -0,0 +1,8 @@
|
||||
{ pkgs, ... }:
|
||||
pkgs.mkShell {
|
||||
packages = with pkgs; [ python3 ];
|
||||
|
||||
shellHook = ''
|
||||
exec $SHELL
|
||||
'';
|
||||
}
|
Reference in New Issue
Block a user