nixos/hosts/modules/server/www/default.nix
2024-06-20 00:17:59 +02:00

14 lines
357 B
Nix

{
imports = [ ./home.anotherhadi.com ];
services.nginx.virtualHosts = {
"anotherhadi.com" = {
serverAliases = [ "www.anotherhadi.com" ];
root = "/etc/www/anotherhadi.com";
};
"home.anotherhadi.com" = { root = "/etc/www/home.anotherhadi.com"; };
};
environment.etc."www/anotherhadi.com" = { source = ./anotherhadi.com; };
}