nt/flake/devshells.nix

21 lines
316 B
Nix
Raw Normal View History

2026-01-27 17:50:53 +10:00
{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";
};
}
);
}