nixos/machines/lil-maid/modules/sops.nix
2024-08-05 20:53:43 +03:00

16 lines
288 B
Nix

{ commonMods, ... }:
{
modules = [
# From this machine I work.
(commonMods + "/sops/work.nix")
# From this machine I develop VienDesu!
(commonMods + "/sops/viendesu.nix")
];
sops = {
secrets."users/nero/password" = {
neededForUsers = true;
};
};
}