diff options
author | David Morgan <djm_uk@protonmail.com> | 2024-09-04 11:59:34 +0100 |
---|---|---|
committer | David Morgan <djm_uk@protonmail.com> | 2024-09-04 11:59:34 +0100 |
commit | cd60a0018f52beb5de91da87efd903e0da451fb2 (patch) | |
tree | d9c750e04b15edc71cb41925cc30e6ba05f4b4d2 /nix-conf/home | |
parent | 5d4324c3e233f95ce7b98ac399769cd1f478e15b (diff) | |
download | dotfiles-cd60a0018f52beb5de91da87efd903e0da451fb2.tar.gz |
Use builtins.path
Diffstat (limited to 'nix-conf/home')
-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" = { }; }; |