add flake module
This commit is contained in:
parent
3fe748f174
commit
bc2a62e62b
4 changed files with 84 additions and 0 deletions
20
flake/devshells.nix
Normal file
20
flake/devshells.nix
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
{this, ...}: let
|
||||
inherit
|
||||
(this.util)
|
||||
forAllSystems
|
||||
;
|
||||
in {
|
||||
devShells = forAllSystems (
|
||||
system: pkgs: {
|
||||
default = pkgs.mkShell {
|
||||
packages = with pkgs; [
|
||||
python312
|
||||
nix-unit
|
||||
nixfmt
|
||||
];
|
||||
|
||||
shell = "${pkgs.bash}/bin/bash";
|
||||
};
|
||||
}
|
||||
);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue