about summary refs log tree commit diff
path: root/ops/modules/www/wigglydonke.rs.nix
blob: 0bc67898c63352d7ecdaaaa50dffff739359a33b (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/glittershark/wigglydonke.rs";
    };
  };
}