Files
nixy/hosts/server/modules/www/anotherhadi.com.nix
T
Hadi 932f6b6dbb Update
Former-commit-id: 0489f7eaa7
2024-09-04 21:04:53 +02:00

8 lines
221 B
Nix

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