nixos/hosts/server/modules/www/default.nix
2024-06-23 14:46:11 +02:00

12 lines
210 B
Nix

{
imports = [
./home.anotherhadi.com.nix
./start.anotherhadi.com.nix
./anotherhadi.com.nix
];
services.nginx.virtualHosts = {
"test.anotherhadi.com" = { root = "/var/www/test"; };
};
}