nixos-systems/roles/sovr.nix
Eli Ribble 9497063340
Deploy nidus-sync v0.0.6
This also removes tegola reading only from the nidus-dev-sync.
Also bump to 25.11 so the system is consistent
2026-01-12 14:12:54 +00:00

28 lines
662 B
Nix

{ config, lib, pkgs, ... }: {
myModules.caddy.enable = true;
myModules.frps = {
domains = [
"audiobooks.theribbles.org"
"auth.theribbles.org"
"carddav.theribbles.org"
"chores.theribbles.org"
"collabora.theribbles.org"
"dev-sync.nidus.cloud"
"dev-tegola.nidus.cloud"
"docs.theribbles.org"
"files.theribbles.org"
"home-assistant.theribbles.org"
"movies.theribbles.org"
"notes.theribbles.org"
"passwords.theribbles.org"
"pdf.theribbles.org"
"photos.theribbles.org"
"plex.theribbles.org"
"s3.theribbles.org"
"source.theribbles.org"
"todo.theribbles.org"
"tv.theribbles.org"
];
enable = true;
};
}