From 374b33f48705dc539fee65a093fcd63c5332a1dd Mon Sep 17 00:00:00 2001 From: SebastianStork Date: Sun, 27 Jul 2025 20:28:14 +0200 Subject: [PATCH] sops: fix config generation --- flake/packages.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flake/packages.nix b/flake/packages.nix index 9d6c76b..a4ff469 100644 --- a/flake/packages.nix +++ b/flake/packages.nix @@ -30,7 +30,7 @@ jsonConfig = { creation_rules = hostCreationRules ++ userCreationRules; } |> lib.strings.toJSON; in pkgs.runCommand "sops.yaml" { buildInputs = [ pkgs.yj ]; } '' - echo '${jsonConfig}' | yj -jy > $out^ + echo '${jsonConfig}' | yj -jy > $out ''; }; }