reduce reliance on feature variable

This commit is contained in:
wi11-holdsworth 2025-07-29 15:03:00 +10:00
parent 924d87e1c0
commit f99185cd13
24 changed files with 82 additions and 82 deletions

View file

@ -8,11 +8,7 @@ let
in
{
config = lib.mkIf config.${feature}.enable {
age.secrets."porkbun-api" = {
file = ../../../secrets/porkbun-api.age;
};
services.${feature} = {
services.nginx = {
enable = true;
recommendedProxySettings = true;
@ -33,14 +29,19 @@ in
certs."fi33.buzz" = {
domain = "fi33.buzz";
extraDomainNames = [ "*.fi33.buzz" ];
group = "${feature}";
group = "nginx";
dnsProvider = "porkbun";
dnsPropagationCheck = true;
credentialsFile = config.age.secrets."porkbun-api".path;
};
};
users.users.${feature}.extraGroups = [ "acme" ];
# secrets
age.secrets."porkbun-api" = {
file = ../../../secrets/porkbun-api.age;
};
users.users.nginx.extraGroups = [ "acme" ];
};
options.${feature}.enable = lib.mkEnableOption "enables ${feature}";