about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--nix-conf/home/includes/common.nix5
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" = { };
   };