16 lines
254 B
Nix
16 lines
254 B
Nix
|
{ depot, lib, pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
imports = [
|
||
|
./base.nix
|
||
|
];
|
||
|
|
||
|
config = {
|
||
|
services.nginx.virtualHosts."wigglydonke.rs" = {
|
||
|
enableACME = true;
|
||
|
forceSSL = true;
|
||
|
root = "${depot.path + "/users/grfn/wigglydonke.rs"}";
|
||
|
};
|
||
|
};
|
||
|
}
|