16 lines
260 B
Nix
16 lines
260 B
Nix
{ config, pkgs, ... }:
|
|
|
|
|
|
{
|
|
hacc.websites = {
|
|
enable = true;
|
|
directory = ../websites;
|
|
};
|
|
|
|
|
|
services.nginx.virtualHosts."parsons.hacc.space" = {
|
|
enableACME = true;
|
|
forceSSL = true;
|
|
locations."/~stuebinm/".root = "/persist/www/";
|
|
};
|
|
}
|