diff options
| author | Fuwn <[email protected]> | 2024-09-30 18:16:45 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-09-30 18:16:45 -0700 |
| commit | 0d9857c0efd9e457f0510e26d91aec9539c71466 (patch) | |
| tree | d82a13c60affb786350c9a908c724dd6426bfc19 /modules/core | |
| parent | lock: tsutsumi (diff) | |
| download | nixos-config-0d9857c0efd9e457f0510e26d91aec9539c71466.tar.xz nixos-config-0d9857c0efd9e457f0510e26d91aec9539c71466.zip | |
flake: use self instead of relative path
Diffstat (limited to 'modules/core')
| -rw-r--r-- | modules/core/sops.nix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/core/sops.nix b/modules/core/sops.nix index c1c9d13..fbf1b6f 100644 --- a/modules/core/sops.nix +++ b/modules/core/sops.nix @@ -1,4 +1,4 @@ -{ pkgs, ... }: +{ pkgs, self, ... }: { environment.systemPackages = [ pkgs.sops @@ -6,7 +6,7 @@ sops = { gnupg.sshKeyPaths = [ ]; - secrets.tailscale_authentication_key.sopsFile = ../../secrets/hosts.yaml; + secrets.tailscale_authentication_key.sopsFile = "${self}/secrets/hosts.yaml"; age = { sshKeyPaths = [ ]; |