move uninsane secrets to a machine-global file

This commit is contained in:
Colin 2022-06-08 14:22:43 -07:00
parent 1670732475
commit 364f76b59e
2 changed files with 2 additions and 2 deletions

View File

@ -1,5 +1,5 @@
# docs: https://search.nixos.org/options?channel=21.11&query=duplicity # docs: https://search.nixos.org/options?channel=21.11&query=duplicity
{ secrets, config, ... }: { config, ... }:
{ {
services.duplicity.enable = true; services.duplicity.enable = true;
@ -38,7 +38,7 @@
# services.duplicity.fullIfOlderThan = "always"; # services.duplicity.fullIfOlderThan = "always";
sops.secrets."duplicity_passphrase" = { sops.secrets."duplicity_passphrase" = {
sopsFile = ../../../secrets/uninsane/duplicity.yaml; sopsFile = ../../../secrets/uninsane.yaml;
# owner = "duplicity"; # owner = "duplicity";
}; };
} }