about summary refs log tree commit diff stats
path: root/nix-conf/home
diff options
context:
space:
mode:
authorDavid Morgan <djm_uk@protonmail.com>2024-09-04 11:59:34 +0100
committerDavid Morgan <djm_uk@protonmail.com>2024-09-04 11:59:34 +0100
commitcd60a0018f52beb5de91da87efd903e0da451fb2 (patch)
treed9c750e04b15edc71cb41925cc30e6ba05f4b4d2 /nix-conf/home
parent5d4324c3e233f95ce7b98ac399769cd1f478e15b (diff)
downloaddotfiles-cd60a0018f52beb5de91da87efd903e0da451fb2.tar.gz
Use builtins.path
Diffstat (limited to 'nix-conf/home')
-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" = { };
   };