nixos server configurations
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

papermario-dx-build: fix sops key extraction syntax

+5 -5
+5 -5
servers/kuribo/papermario-dx-build.nix
··· 3 3 sops.secrets."papermario-dx/baseromUrl" = { 4 4 sopsFile = ../../secrets/kuribo/papermario-dx-build.json; 5 5 format = "json"; 6 - key = "baseromUrl"; 6 + key = ''["baseromUrl"]''; 7 7 }; 8 8 sops.secrets."papermario-dx/sccache/endpoint" = { 9 9 sopsFile = ../../secrets/kuribo/papermario-dx-build.json; 10 10 format = "json"; 11 - key = "sccache/endpoint"; 11 + key = ''["sccache"]["endpoint"]''; 12 12 }; 13 13 sops.secrets."papermario-dx/sccache/bucket" = { 14 14 sopsFile = ../../secrets/kuribo/papermario-dx-build.json; 15 15 format = "json"; 16 - key = "sccache/bucket"; 16 + key = ''["sccache"]["bucket"]''; 17 17 }; 18 18 sops.secrets."papermario-dx/sccache/accessKey" = { 19 19 sopsFile = ../../secrets/kuribo/papermario-dx-build.json; 20 20 format = "json"; 21 - key = "sccache/accessKey"; 21 + key = ''["sccache"]["accessKey"]''; 22 22 }; 23 23 sops.secrets."papermario-dx/sccache/secretKey" = { 24 24 sopsFile = ../../secrets/kuribo/papermario-dx-build.json; 25 25 format = "json"; 26 - key = "sccache/secretKey"; 26 + key = ''["sccache"]["secretKey"]''; 27 27 }; 28 28 29 29 systemd.services.papermario-dx-build-json = {