fix: battery

This commit is contained in:
Kat Inskip 2025-12-07 23:47:53 -08:00
parent 1ba98534eb
commit b0b1afc339
Signed by: kat
GPG key ID: 465E64DECEA8CF0F
10 changed files with 169 additions and 42 deletions

View file

@ -1,6 +1,7 @@
_: let
hostConfig = {
tree,
config,
modulesPath,
...
}: {
@ -53,6 +54,21 @@ _: let
# };
#};
services.nginx.virtualHosts = let
vHost = {
extraConfig = ''
add_header Content-Type text/plain;
return 200 "meep?";
'';
};
in {
${config.networking.fqdn} = {
enableACME = true;
forceSSL = true;
default = true;
};
"localhost" = vHost;
};
security.acme.defaults.email = "acme@inskip.me";
system.stateVersion = "23.11";
};

View file

@ -15,6 +15,8 @@ _: let
++ (with tree.nixos.servers; [
mail
continuwuity
prosody
web
]);
boot = {