chore: removed services for now

This commit is contained in:
Nick 2025-10-25 05:16:26 -05:00
parent fd46841bfb
commit 0dbcbb6b19
11 changed files with 113 additions and 44 deletions

10
modules/nixos/services/acme/acmeCeres/default.nix Normal file → Executable file
View file

@ -10,6 +10,7 @@ let
domain0 = instances.web.domains.url0;
domain1 = instances.web.domains.url1;
domain4 = flake.inputs.linkpage.secrets.domains.projectsite;
service = instances.acme;
dns0 = instances.web.dns.provider0;
dns1 = instances.web.dns.provider1;
dns0Path = "dns/${dns0}";
@ -46,6 +47,8 @@ in
instances.prompter.name
instances.comfyui.name
instances.firefly-iii.name
instances.nextcloud.name
instances.opencloud.name
]
)
++ (map
@ -108,4 +111,11 @@ in
)
);
};
systemd = {
tmpfiles.rules = [
"Z ${service.sops.path0} 755 ${service.name} ${service.name} -"
];
};
}