Merge branch 'master' of git.uninsane.org:shelvacu/nix-stuff

This commit is contained in:
Shelvacu
2024-12-09 11:15:05 -08:00
committed by Shelvacu on fw
3 changed files with 10 additions and 2 deletions

View File

@@ -18,8 +18,9 @@
habitat.enable = true;
vacustore.enable = true;
jl-stats.enable = true;
static-stuff.enable = true;
nix-cache.enable = true;
static-stuff-tulpaudcast.enable = true;
static-stuff-mira.enable = true;
llm.enable = true;
dufs.enable = true;

View File

@@ -16,6 +16,7 @@ let
"jean-luc.org"
"pwrhs.win"
"jf.finaltask.xyz"
"shelvacu.miras.pet"
];
proxied = lib.pipe config.vacu.proxiedServices [
lib.attrValues

View File

@@ -2,11 +2,16 @@
...
}:
{
vacu.proxiedServices.static-stuff = {
vacu.proxiedServices.static-stuff-tulpaudcast = {
domain = "tulpaudcast.jean-luc.org";
fromContainer = "static-stuff";
port = 80;
};
vacu.proxiedServices.static-stuff-mira = {
domain = "shelvacu.miras.pet";
fromContainer = "static-stuff";
port = 80;
};
systemd.tmpfiles.settings.asdf."/trip/static-stuff".d = {
mode = "0744";
@@ -32,6 +37,7 @@
services.nginx.enable = true;
services.nginx.virtualHosts."tulpaudcast.jean-luc.org".root =
"/static-stuff/tulpaudcast.jean-luc.org";
services.nginx.virtualHosts."shelvcu.miras.pet".extraConfig = ''return "I don't know what to put here";'';
};
};
}