tvl-depot/ops/modules/www/wigglydonke.rs.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

16 lines
249 B
Nix
Raw Normal View History

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