From 78e219a6cb6d3e3422950c69e68afa7ccdec8fd8 Mon Sep 17 00:00:00 2001 From: Julian Mutter Date: Tue, 28 Oct 2025 09:08:22 +0100 Subject: [PATCH] sops: do not use keyfile makes ssh keys work --- hosts/common/global/sops.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hosts/common/global/sops.nix b/hosts/common/global/sops.nix index 28b2822..1ffa13a 100644 --- a/hosts/common/global/sops.nix +++ b/hosts/common/global/sops.nix @@ -13,7 +13,7 @@ in { sshKeyPaths = map getKeyPath keys; # TODO: remove? only rely on ssh or pgp keys (e.g. ubikey like misterio is using!!!) - keyFile = "/home/julian/.config/sops/age/keys.txt"; + # keyFile = "/home/julian/.config/sops/age/keys.txt"; # Generate key if none of the above worked. With this, building will still work, just without secrets generateKey = false; # TODO: building should not work without secrets!? };