refactor: distribute packages from _lib/packages.nix into aspect modules

This commit is contained in:
2026-03-08 19:08:15 +00:00
parent 0aa8606153
commit bfc9af382f
14 changed files with 129 additions and 74 deletions

View File

@@ -12,4 +12,13 @@
sops.age.sshKeyPaths = [];
sops.gnupg.sshKeyPaths = [];
};
# Encryption/secrets tools
den.aspects.secrets.homeManager = {pkgs, ...}: {
home.packages = with pkgs; [
age
gnupg
sops
];
};
}