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