diff options
-rw-r--r-- | nix-conf/home/includes/common.nix | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/nix-conf/home/includes/common.nix b/nix-conf/home/includes/common.nix index a6643e7..84bd7ae 100644 --- a/nix-conf/home/includes/common.nix +++ b/nix-conf/home/includes/common.nix @@ -20,7 +20,10 @@ in sops = { age.keyFile = "${config.xdg.configHome}/sops/age/keys.txt"; - defaultSopsFile = ./../../secrets/home.yaml; + defaultSopsFile = builtins.path { + path = ./../../secrets/home.yaml; + name = "home-secrets.yaml"; + }; secrets."ssh_config/oci" = { }; secrets."git_email_config/default" = { }; }; |