Files
nixy/hosts/server/modules/www/anotherhadi.com.nix
Hadi 01f9894fc6 update
Former-commit-id: da2aab6f76
2024-09-04 21:07:53 +02:00

8 lines
229 B
Nix

{ inputs, pkgs, ... }: {
services.nginx.virtualHosts."anotherhadi.com" = {
serverAliases = [ "www.anotherhadi.com" ];
enableACME = true;
root = inputs.anotherhadi-portfolio.packages."${pkgs.system}".default;
};
}