reNixos/s0melapt0p-nix/system/sops/secrets.nix
2025-04-27 12:47:02 +03:00

19 lines
472 B
Nix

{...}: {
sops = {
secrets = {
sshKey = {
format = "yaml";
sopsFile = ./secrets/sshKey.yaml;
};
sshKey_pub = {
format = "yaml";
sopsFile = ./secrets/sshKey_pub.yaml;
};
passwd = {
neededForUsers = true;
format = "yaml";
sopsFile = ./secrets/passwd.yaml;
};
};
};
}