mirror of
https://github.com/anotherhadi/nixy.git
synced 2026-08-21 10:45:49 +02:00
e6b7406730
Former-commit-id: da2aab6f76
8 lines
229 B
Nix
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;
|
|
};
|
|
}
|