refactor: move max into dentritic pattern

This commit is contained in:
2026-05-21 11:26:17 -04:00
parent 5e886ee875
commit 8043068885
90 changed files with 1963 additions and 1586 deletions

19
modules/shell.nix Normal file
View File

@@ -0,0 +1,19 @@
{ ... }: {
perSystem = { pkgs, ... }: {
devShells.default = pkgs.mkShell {
shellHook = ''
export SOPS_AGE_KEY="$(${pkgs.age-plugin-yubikey}/bin/age-plugin-yubikey --identity)"
'';
packages = with pkgs; [
age
ssh-to-age
sops
just
nix-inspect
age-plugin-yubikey
];
};
};
}