feat(home-manager/mails): use secrets for passwords

This commit is contained in:
Luj 2024-11-25 21:12:29 +01:00
parent 9e09eb8f34
commit 77afc9ae2a
Signed by: luj
GPG key ID: 6FC74C847011FD83
7 changed files with 82 additions and 5 deletions

View file

@ -23,7 +23,10 @@ with lib;
(map (x: ../../home-manager-modules + "/${x}/default.nix") (
attrNames (readDir ../../home-manager-modules)
))
++ [ "${inputs.impermanence}/home-manager.nix" ];
++ [
"${inputs.impermanence}/home-manager.nix"
"${inputs.agenix}/modules/age-home.nix"
];
home.username = "${name}";
home.homeDirectory = "/home/${name}";
home.stateVersion = "21.05";