nixfleet/shell/default.nix
Andrea Ciceri 4980df6f75
Some checks failed
/ test (push) Failing after 36s
Use newer nixfmt
2024-09-20 11:24:06 +02:00

23 lines
476 B
Nix

{
perSystem = { pkgs, config, ... }: {
devShells.default = pkgs.mkShell {
name = "fleet-shell";
buildInputs = with pkgs; [
git
agenix
age
deadnix
statix
alejandra
disko
deploy
colmena
nixos-anywhere
];
shellHook = ''
export RULES="$(git rev-parse --show-toplevel)/secrets/secrets.nix";
${config.pre-commit.installationScript}
'';
};
};
}