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

{
  imports = [
    ./base.nix
  ];

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