lebron james reportedly forgets to add variable to top line of nix file and forgets to enable a module

This commit is contained in:
wo2wz 2025-08-29 16:11:57 -04:00
parent 0ef58010f3
commit b9defc1e51
2 changed files with 4 additions and 3 deletions

View file

@ -2,9 +2,10 @@
{ {
services.cloudflared = { services.cloudflared = {
enable = true;
tunnels."8af2892d-d534-4e32-b867-5b79308a99d5" = { tunnels."8af2892d-d534-4e32-b867-5b79308a99d5" = {
credentialsFile = config.sops.secrets."cloudflared/8af2892d-d534-4e32-b867-5b79308a99d5.json".path; credentialsFile = config.sops.secrets."cloudflared/8af2892d-d534-4e32-b867-5b79308a99d5.json".path;
default = "http_status:418"; default = "http_status:418";
}; };
}; };
} }

View file

@ -1,4 +1,4 @@
{ config, ... }: { inputs, config, ... }:
{ {
imports = [ inputs.sops-nix.nixosModules.sops ]; imports = [ inputs.sops-nix.nixosModules.sops ];
@ -31,4 +31,4 @@
"zipline/secrets.env".restartUnits = [ "zipline.service" ]; "zipline/secrets.env".restartUnits = [ "zipline.service" ];
}; };
}; };
} }