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

14 lines
362 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 = ./home.anotherhadi.com; };
}