This repository has been archived on 2024-06-17. You can view files and clone it, but cannot push or open issues or pull requests.
nixConfig/secrets.nix
2024-05-02 18:13:43 +02:00

11 lines
260 B
Nix

{
imports = [ <sops-nix/modules/sops> ];
sops.defaultSopsFile = ./sshkeys.secret.yaml;
sops.secrets.userPasswords = {
neededForUsers = true;
sopsFile = ./userPasswords.secret.yaml;
};
sops.secrets.sshKeys.sopsFile = ./sshkeys.secret.yaml;
}