flake/parts/dev.nix
2024-05-18 12:35:02 +02:00

14 lines
218 B
Nix

{
perSystem = {pkgs, ...}: {
devShells.default = pkgs.mkShellNoCC {
packages = with pkgs; [
just
nil
statix
deploy-rs
];
};
formatter = pkgs.alejandra;
};
}