Fold more logic into the tagging system

This commit is contained in:
Bun 2025-06-30 19:42:19 -04:00
parent 3398c611b7
commit 7999794410
14 changed files with 60 additions and 25 deletions

View file

@ -9,5 +9,13 @@
libvirtd.enable = true;
vmware.host.enable = true;
};
services.nginx = {
enable = true;
virtualHosts."localhost" = {
default = true;
root = "/var/www/landing-page";
};
};
};
}

View file

@ -0,0 +1,6 @@
{ ... }:
{
imports = [ ./nixfox ];
services.nginx.enable = true;
}

View file

@ -0,0 +1,10 @@
{ config, lib, ... }:
{
services.nginx = {
enable = true;
virtualHosts."localhost" = {
default = true;
root = "/var/www/landing-page";
};
};
}