*actually* upload nixcloud configs

This commit is contained in:
k3t
2026-03-12 05:15:14 -06:00
parent 18261a9969
commit e8b59f873b
12 changed files with 471 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
{ config, lib, pkgs, ... }:
{
services.caddy = {
enable = true;
virtualHosts."k3t.dev".extraConfig = ''
encode zstd gzip
root /var/www/k3t.dev/
file_server browse
'';
};
}