nixfleet/shell/default.nix
Andrea Ciceri f05ee0a658
Started migration towards flake-parts
Plus shit ton many changes I still had to commit
2023-03-12 17:05:03 +01:00

19 lines
339 B
Nix

{inputs, ...}: {
perSystem = {
pkgs,
config,
self',
...
}: {
devShells.default = pkgs.mkShell {
name = "fleet-shell";
buildInputs = with pkgs; [
git
agenix
];
shellHook = ''
export RULES="$(git rev-parse --show-toplevel)/secrets/default.nix";
'';
};
};
}