This commit is contained in:
Leonardo Eugênio 2024-10-05 10:50:17 -03:00
parent 41fe2f92ea
commit 3c98026133
4 changed files with 56 additions and 0 deletions

View file

@ -21,6 +21,7 @@
./warthunder-leak-counter.nix
./invidious.nix
./davi.nix
./goofs.nix
];
networking.hostName = "phantom";

13
hosts/phantom/goofs.nix Normal file
View file

@ -0,0 +1,13 @@
{ inputs, ... }:
{
services.nginx.virtualHosts."catboy-spinner.lelgenio.com" = {
enableACME = true;
forceSSL = true;
root = inputs.catboy-spinner;
};
services.nginx.virtualHosts."tomater.lelgenio.com" = {
enableACME = true;
forceSSL = true;
root = inputs.tomater;
};
}