nt/flake/devshells.nix
Emile Clark-Boman bc2a62e62b add flake module
2026-01-27 17:50:53 +10:00

20 lines
316 B
Nix

{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";
};
}
);
}