15 lines
261 B
Nix
15 lines
261 B
Nix
|
{ inputs, config, ... }:
|
||
|
{
|
||
|
imports = [
|
||
|
inputs.sops-nix.nixosModules.sops
|
||
|
];
|
||
|
|
||
|
sops = {
|
||
|
defaultSopsFile = ./secrets.yaml;
|
||
|
age.sshKeyPaths = [ "/etc/ssh/ssh_host_ed25519_key" ];
|
||
|
secrets = {
|
||
|
"gitea/postgres-password" = {};
|
||
|
};
|
||
|
};
|
||
|
}
|