nixos

NixOS server files. Mirror from https://git.nordgedanken.dev/kubernetes/nixos
git clone git://archive.git.mtrnord.blog/MTRNord/nixos.git
Log | Files | Refs | README

commit 1179b9ec493152c11a37b7860000a8a03187d942
parent 36c186ffb26b111fac80c4afe635c8607c8db073
Author: MTRNord <mtrnord1@gmail.com>
Date:   Wed,  9 Aug 2023 16:46:04 +0200

Fix age keyfile path

Diffstat:
Mnixos/worker-1/configuration.nix | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/nixos/worker-1/configuration.nix b/nixos/worker-1/configuration.nix @@ -166,7 +166,7 @@ sops.age.sshKeyPaths = [ "/persist/etc/ssh/ssh_host_ed25519_key" ]; sops.gnupg.sshKeyPaths = [ "/persist/etc/ssh/ssh_host_rsa_key" ]; # This is using an age key that is expected to already be in the filesystem - sops.age.keyFile = "/var/lib/sops-nix/key.txt"; + sops.age.keyFile = "/persist/var/lib/sops-nix/key.txt"; # This will generate a new key if the key specified above does not exist sops.age.generateKey = true; sops.defaultSopsFile = builtins.path { path = ./secrets/secrets.yaml; name = "worker-1-secrets"; };