about summary refs log tree commit diff
path: root/ops/modules/www/wigglydonke.rs.nix
blob: 3d85e4eb98433edbb26f0a0bb49632e6a11765b5 (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.path + "/users/grfn/wigglydonke.rs"}";
    };
  };
}