From b8f8c1d40c1d551122f7df87744493fd6825839c Mon Sep 17 00:00:00 2001 From: blake Date: Mon, 6 Oct 2025 10:09:12 -0500 Subject: [PATCH] 19 current 2025-10-05 21:56:34 25.05.20251001.5b5be50 6.12.49 * --- modules/system/sops.nix | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/modules/system/sops.nix b/modules/system/sops.nix index 180d176..018258a 100644 --- a/modules/system/sops.nix +++ b/modules/system/sops.nix @@ -12,12 +12,15 @@ in config = lib.mkIf cfg.enable { # enable and configure sops for secrets - sops.defaultSopsFile = ../../secrets/secrets.yaml; - sops.defaultSopsFormat = "yaml"; - - sops.age.keyFile = "/home/blake/.config/sops/age/keys.txt"; + sops = { + defaultSopsFile = ../../secrets/secrets.yaml; + defaultSopsFormat = "yaml"; + age.keyFile = "/home/blake/.config/sops/age/keys.txt"; - #sops.secrets.tailscale_authkey = { }; - sops.secrets."tailscale_authkey" = { owner = "root"; }; + secrets = { + "tailscale_authkey" = { owner = "root"; }; + + }; + }; }; }