15 lines
231 B
Nix
15 lines
231 B
Nix
{
|
|
rootPath,
|
|
config,
|
|
...
|
|
}:
|
|
{
|
|
config = {
|
|
sops.defaultSopsFile = rootPath + "/secrets/general.yaml";
|
|
sops.age = {
|
|
keyFile = "/var/sops/key.txt";
|
|
sshKeyPaths = [ ];
|
|
generateKey = false;
|
|
};
|
|
};
|
|
}
|