13 lines
286 B
Nix
13 lines
286 B
Nix
{
|
|
lib,
|
|
config,
|
|
pkgs,
|
|
...
|
|
}:
|
|
{
|
|
sops = {
|
|
age.keyFile = "/Users/os/Library/Application Support/sops/age/keys.txt";
|
|
defaultSopsFile = lib.mkDefault ./secrets.yaml;
|
|
defaultSopsFormat = "yaml"; # is the default. ini had some template rendering issues in practice
|
|
};
|
|
}
|