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