Started migration towards flake-parts

Plus shit ton many changes I still had to commit
This commit is contained in:
Andrea Ciceri 2023-03-12 17:05:03 +01:00
parent 261b763848
commit f05ee0a658
No known key found for this signature in database
GPG key ID: A1FC89532D1C5654
18 changed files with 752 additions and 460 deletions

19
shell/default.nix Normal file
View file

@ -0,0 +1,19 @@
{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";
'';
};
};
}