nixos-config/hosts/phantom/goofs.nix

14 lines
301 B
Nix
Raw Normal View History

2024-10-05 10:50:17 -03:00
{ 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;
};
}