about summary refs log tree commit diff
path: root/ops/modules/www/wigglydonke.rs.nix
blob: 4643b343174a039b3cf0de9d3976e41b84000f7b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ depot, lib, pkgs, ... }:

{
  imports = [
    ./base.nix
  ];

  config = {
    services.nginx.virtualHosts."wigglydonke.rs" = {
      enableACME = true;
      forceSSL = true;
      root = "${depot.depotPath}/users/grfn/wigglydonke.rs";
    };
  };
}