Add dev shells

Signed-off-by: Nikolaos Karaolidis <nick@karaolidis.com>
This commit is contained in:
2024-09-30 12:52:21 +04:00
parent 83d9007145
commit 41b417309d
6 changed files with 73 additions and 3 deletions

View File

@@ -33,5 +33,4 @@
config.environment.persistence."/persist"."/var/lib/cups/printers.conf".mount
];
};
}

View File

@@ -0,0 +1,12 @@
{ pkgs, ... }:
pkgs.mkShell {
packages = with pkgs; [
nix
nil
nixpkgs-fmt
];
shellHook = ''
exec $SHELL
'';
}

View File

@@ -0,0 +1,8 @@
{ pkgs, ... }:
pkgs.mkShell {
packages = with pkgs; [ python3 ];
shellHook = ''
exec $SHELL
'';
}