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 /home/ebisu | |
| parent | lock: tsutsumi (diff) | |
| download | nixos-config-0d9857c0efd9e457f0510e26d91aec9539c71466.tar.xz nixos-config-0d9857c0efd9e457f0510e26d91aec9539c71466.zip | |
flake: use self instead of relative path
Diffstat (limited to 'home/ebisu')
| -rw-r--r-- | home/ebisu/fortune/system/sops.nix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/home/ebisu/fortune/system/sops.nix b/home/ebisu/fortune/system/sops.nix index e0fb581..e229626 100644 --- a/home/ebisu/fortune/system/sops.nix +++ b/home/ebisu/fortune/system/sops.nix @@ -1,8 +1,8 @@ -{ config, ... }: +{ config, self, ... }: { sops = { gnupg.sshKeyPaths = [ ]; - defaultSopsFile = ../../../../secrets/${config.home.username}.yaml; + defaultSopsFile = "${self}/secrets/${config.home.username}.yaml"; age = { sshKeyPaths = [ ]; |