services/soulbeet: init and add to alyssum
Some checks are pending
CI / Build linux-lava for x86_64-linux (push) Waiting to run

This commit is contained in:
Cilly Leang 2026-06-16 23:02:43 +10:00
parent 402c847f3c
commit c36a3f09de
Signed by: cilly
GPG key ID: 6500251E087653C9
4 changed files with 43 additions and 0 deletions

View file

@ -6,6 +6,7 @@
let
name = "fluorite";
fqdn = "fluorite.lava.moe";
altfqdn = hostname: "fluorite.${hostname}.lava.moe";
subnetId = "6";
subnet = x: "fd0d:1::${subnetId}:${toString x}";
@ -42,6 +43,13 @@
listenAddresses = [ "10.0.0.1" "[fd0d::1]" "100.67.1.1" ];
};
services.nginx.virtualHosts."${altfqdn config.networking.hostname}" = {
useACMEHost = "lava.moe";
forceSSL = true;
locations."/".proxyPass = "http://[${client}]:5030";
listenAddresses = [ "10.0.0.1" "[fd0d::1]" "100.67.1.1" ];
};
systemd.tmpfiles.rules = [
"d /persist/containers/${name} 755 root users"
"d /persist/media/music 075 nobody users"