Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
{ depot, lib, pkgs, ... }:
{
imports = [
./base.nix
];
config = {
services.nginx.virtualHosts."wigglydonke.rs" = {
enableACME = true;
forceSSL = true;
root = "${depot.path + "/users/grfn/wigglydonke.rs"}";
};
}