mirror of
https://github.com/Mic92/sops-nix.git
synced 2024-12-14 11:57:52 +00:00
17 lines
389 B
Nix
17 lines
389 B
Nix
{
|
|
config,
|
|
...
|
|
}:
|
|
{
|
|
imports = [
|
|
../modules/nix-darwin/default.nix
|
|
];
|
|
documentation.enable = false;
|
|
sops.secrets.test_key = { };
|
|
sops.templates."template.toml".content = ''
|
|
password = "${config.sops.placeholder.test_key}";
|
|
'';
|
|
sops.defaultSopsFile = ../pkgs/sops-install-secrets/test-assets/secrets.yaml;
|
|
sops.age.generateKey = true;
|
|
system.stateVersion = 5;
|
|
}
|