From c4a98ad7699f66aff8e0199b2edb41d409676070 Mon Sep 17 00:00:00 2001 From: wi11-holdsworth <83637728+wi11-holdsworth@users.noreply.github.com> Date: Wed, 14 Jan 2026 21:33:39 +1100 Subject: [PATCH 01/47] feat(upbank2firefly): add a systemd timer that triggers transaction sync every hour --- modules/nixos/features/upbank2firefly.nix | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/modules/nixos/features/upbank2firefly.nix b/modules/nixos/features/upbank2firefly.nix index e711bb8..bebab7f 100644 --- a/modules/nixos/features/upbank2firefly.nix +++ b/modules/nixos/features/upbank2firefly.nix @@ -46,6 +46,24 @@ in docker build -t compose2nix/upbank2firefly . ''; }; + "upbank2firefly-getall" = { + script = '' + cd /srv/upbank2firefly + docker container exec -e FLASK_APP=main upbank2firefly flask getall --since "$(date -d "1 hour ago" +"%Y-%m-%d %H:%M:%S")" + ''; + serviceConfig = { + Type = "oneshot"; + User = "root"; + }; + }; + }; + timers."upbank2firefly-getall" = { + wantedBy = [ "timers.target" ]; + timerConfig = { + Unit = "upbank2firefly-getall.service"; + OnCalendar = "hourly"; + Persistent = true; + }; }; }; From 2197490b63a74739e61ecec1202e760d2730a509 Mon Sep 17 00:00:00 2001 From: wi11-holdsworth <83637728+wi11-holdsworth@users.noreply.github.com> Date: Thu, 15 Jan 2026 15:38:54 +1100 Subject: [PATCH 02/47] feat(borgmatic): ensure that all sqlite databases are backed up separately from the services they store data for --- modules/nixos/features/bazarr.nix | 7 +++++++ modules/nixos/features/jellyfin.nix | 7 +++++++ modules/nixos/features/karakeep.nix | 7 +++++++ modules/nixos/features/kavita.nix | 7 +++++++ modules/nixos/features/lidarr.nix | 7 +++++++ modules/nixos/features/paperless.nix | 2 +- modules/nixos/features/prowlarr.nix | 7 +++++++ modules/nixos/features/qui.nix | 7 +++++++ modules/nixos/features/radarr.nix | 7 +++++++ modules/nixos/features/readarr.nix | 7 +++++++ modules/nixos/features/sonarr.nix | 7 +++++++ modules/nixos/features/vaultwarden.nix | 7 +++++++ 12 files changed, 78 insertions(+), 1 deletion(-) diff --git a/modules/nixos/features/bazarr.nix b/modules/nixos/features/bazarr.nix index 541235c..b1cd4a9 100644 --- a/modules/nixos/features/bazarr.nix +++ b/modules/nixos/features/bazarr.nix @@ -11,6 +11,13 @@ in listenPort = port; }; + borgmatic.settings.sqlite_databases = [ + { + name = "bazarr"; + path = "/srv/bazarr/db/bazarr.db"; + } + ]; + caddy.virtualHosts."bazarr.fi33.buzz".extraConfig = '' reverse_proxy localhost:${toString port} tls ${certloc}/cert.pem ${certloc}/key.pem { diff --git a/modules/nixos/features/jellyfin.nix b/modules/nixos/features/jellyfin.nix index 9fab896..b6cbcc4 100644 --- a/modules/nixos/features/jellyfin.nix +++ b/modules/nixos/features/jellyfin.nix @@ -10,6 +10,13 @@ in group = "srv"; }; + borgmatic.settings.sqlite_databases = [ + { + name = "jellyfin"; + path = "/srv/jellyfin/data/jellyfin.db"; + } + ]; + caddy.virtualHosts."jellyfin.fi33.buzz".extraConfig = '' reverse_proxy localhost:${toString port} tls ${certloc}/cert.pem ${certloc}/key.pem { diff --git a/modules/nixos/features/karakeep.nix b/modules/nixos/features/karakeep.nix index cebc5f8..0eb9bba 100644 --- a/modules/nixos/features/karakeep.nix +++ b/modules/nixos/features/karakeep.nix @@ -12,6 +12,13 @@ in }; }; + borgmatic.settings.sqlite_databases = [ + { + name = "karakeep"; + path = "/var/lib/karakeep/db.db"; + } + ]; + caddy.virtualHosts."karakeep.fi33.buzz".extraConfig = '' reverse_proxy localhost:${toString port} tls ${certloc}/cert.pem ${certloc}/key.pem { diff --git a/modules/nixos/features/kavita.nix b/modules/nixos/features/kavita.nix index bbb2322..d1fe035 100644 --- a/modules/nixos/features/kavita.nix +++ b/modules/nixos/features/kavita.nix @@ -15,6 +15,13 @@ in tokenKeyFile = config.age.secrets.kavita.path; }; + borgmatic.settings.sqlite_databases = [ + { + name = "kavita"; + path = "/srv/kavita/config/kavita.db"; + } + ]; + caddy.virtualHosts."kavita.fi33.buzz".extraConfig = '' reverse_proxy localhost:${toString port} tls ${certloc}/cert.pem ${certloc}/key.pem { diff --git a/modules/nixos/features/lidarr.nix b/modules/nixos/features/lidarr.nix index 78aa609..5c297d7 100644 --- a/modules/nixos/features/lidarr.nix +++ b/modules/nixos/features/lidarr.nix @@ -13,6 +13,13 @@ in group = "srv"; }; + borgmatic.settings.sqlite_databases = [ + { + name = "lidarr"; + path = "/srv/lidarr/lidarr.db"; + } + ]; + caddy.virtualHosts."lidarr.fi33.buzz".extraConfig = '' reverse_proxy localhost:${toString port} tls ${certloc}/cert.pem ${certloc}/key.pem { diff --git a/modules/nixos/features/paperless.nix b/modules/nixos/features/paperless.nix index 01bc88d..174eb40 100644 --- a/modules/nixos/features/paperless.nix +++ b/modules/nixos/features/paperless.nix @@ -30,7 +30,7 @@ in ]; }; -caddy.virtualHosts."paperless.fi33.buzz".extraConfig = '' + caddy.virtualHosts."paperless.fi33.buzz".extraConfig = '' reverse_proxy localhost:${toString port} tls ${certloc}/cert.pem ${certloc}/key.pem { protocols tls1.3 diff --git a/modules/nixos/features/prowlarr.nix b/modules/nixos/features/prowlarr.nix index 23e090f..d5f24e7 100644 --- a/modules/nixos/features/prowlarr.nix +++ b/modules/nixos/features/prowlarr.nix @@ -12,6 +12,13 @@ in }; }; + borgmatic.settings.sqlite_databases = [ + { + name = "prowlarr"; + path = "/srv/prowlarr/prowlarr.db"; + } + ]; + caddy.virtualHosts."prowlarr.fi33.buzz".extraConfig = '' reverse_proxy localhost:${toString port} tls ${certloc}/cert.pem ${certloc}/key.pem { diff --git a/modules/nixos/features/qui.nix b/modules/nixos/features/qui.nix index 8c34edf..bcb5c96 100644 --- a/modules/nixos/features/qui.nix +++ b/modules/nixos/features/qui.nix @@ -23,6 +23,13 @@ in }; }; + services.borgmatic.settings.sqlite_databases = [ + { + name = "qui"; + path = "/srv/qui/qui.db"; + } + ]; + services.caddy.virtualHosts."qui.fi33.buzz".extraConfig = '' reverse_proxy localhost:${toString port} tls ${certloc}/cert.pem ${certloc}/key.pem { diff --git a/modules/nixos/features/radarr.nix b/modules/nixos/features/radarr.nix index 30063eb..2c5c019 100644 --- a/modules/nixos/features/radarr.nix +++ b/modules/nixos/features/radarr.nix @@ -13,6 +13,13 @@ in group = "srv"; }; + borgmatic.settings.sqlite_databases = [ + { + name = "radarr"; + path = "/srv/radarr/radarr.db"; + } + ]; + caddy.virtualHosts."radarr.fi33.buzz".extraConfig = '' reverse_proxy localhost:${toString port} tls ${certloc}/cert.pem ${certloc}/key.pem { diff --git a/modules/nixos/features/readarr.nix b/modules/nixos/features/readarr.nix index 42a884b..f616480 100644 --- a/modules/nixos/features/readarr.nix +++ b/modules/nixos/features/readarr.nix @@ -13,6 +13,13 @@ in group = "srv"; }; + borgmatic.settings.sqlite_databases = [ + { + name = "readarr"; + path = "/srv/readarr/readarr.db"; + } + ]; + caddy.virtualHosts."readarr.fi33.buzz".extraConfig = '' reverse_proxy localhost:${toString port} tls ${certloc}/cert.pem ${certloc}/key.pem { diff --git a/modules/nixos/features/sonarr.nix b/modules/nixos/features/sonarr.nix index 691b4b8..4be089e 100644 --- a/modules/nixos/features/sonarr.nix +++ b/modules/nixos/features/sonarr.nix @@ -13,6 +13,13 @@ in group = "srv"; }; + borgmatic.settings.sqlite_databases = [ + { + name = "sonarr"; + path = "/srv/sonarr/sonarr.db"; + } + ]; + caddy.virtualHosts."sonarr.fi33.buzz".extraConfig = '' reverse_proxy localhost:${toString port} tls ${certloc}/cert.pem ${certloc}/key.pem { diff --git a/modules/nixos/features/vaultwarden.nix b/modules/nixos/features/vaultwarden.nix index be8cb7a..76d8acc 100644 --- a/modules/nixos/features/vaultwarden.nix +++ b/modules/nixos/features/vaultwarden.nix @@ -23,6 +23,13 @@ in }; }; + borgmatic.settings.sqlite_databases = [ + { + name = "vaultwarden"; + path = "/srv/vaultwarden/db.sqlite3"; + } + ]; + caddy.virtualHosts."vaultwarden.fi33.buzz".extraConfig = '' reverse_proxy localhost:${toString port} tls ${certloc}/cert.pem ${certloc}/key.pem { From 69c335dc2f5954a598bd9622e55ca262b7cd053d Mon Sep 17 00:00:00 2001 From: wi11-holdsworth <83637728+wi11-holdsworth@users.noreply.github.com> Date: Fri, 16 Jan 2026 07:58:32 +1100 Subject: [PATCH 03/47] feat(shell-aliases): break out to separate module to ensure aliases can be used over all shells --- modules/home-manager/default.nix | 1 + modules/home-manager/features/fish.nix | 25 ----------------- .../home-manager/features/shell-aliases.nix | 27 +++++++++++++++++++ 3 files changed, 28 insertions(+), 25 deletions(-) create mode 100644 modules/home-manager/features/shell-aliases.nix diff --git a/modules/home-manager/default.nix b/modules/home-manager/default.nix index 2bd1c85..797b6e2 100644 --- a/modules/home-manager/default.nix +++ b/modules/home-manager/default.nix @@ -15,6 +15,7 @@ "gh" "git" "lazygit" + "shell-aliases" "starship" "yazi" "zoxide" diff --git a/modules/home-manager/features/fish.nix b/modules/home-manager/features/fish.nix index a3fdf4c..4c8e865 100644 --- a/modules/home-manager/features/fish.nix +++ b/modules/home-manager/features/fish.nix @@ -9,31 +9,6 @@ interactiveShellInit = '' set fish_greeting ''; - shellAliases = { - # keep-sorted start - ",cat" = "bat"; - ",curl" = "xh"; - ",cut" = "choose"; - ",df" = "duf"; - ",diff" = "delta"; - ",du" = "dua"; - ",find" = "fd"; - ",grep" = "rga"; - ",ping" = "gping"; - ",ps" = "procs"; - ",sed" = "sd"; - ",ss" = "snitch"; - ",top" = "btm"; - ",unzip" = "ripunzip"; - "g" = "lazygit"; - "l" = "eza"; - "la" = "eza -a"; - "ls" = "eza"; - "ns" = "nh os switch"; - "vi" = "nvim"; - "vim" = "nvim"; - # keep-sorted end - }; plugins = [ # INFO: Using this to get shell completion for programs added to the path through nix+direnv. # Issue to upstream into direnv:Add commentMore actions diff --git a/modules/home-manager/features/shell-aliases.nix b/modules/home-manager/features/shell-aliases.nix new file mode 100644 index 0000000..0c78ca6 --- /dev/null +++ b/modules/home-manager/features/shell-aliases.nix @@ -0,0 +1,27 @@ +{ + home.shellAliases = { + # keep-sorted start + ",cat" = "bat"; + ",curl" = "xh"; + ",cut" = "choose"; + ",df" = "duf"; + ",diff" = "delta"; + ",du" = "dua"; + ",find" = "fd"; + ",grep" = "rga"; + ",ping" = "gping"; + ",ps" = "procs"; + ",sed" = "sd"; + ",ss" = "snitch"; + ",top" = "btm"; + ",unzip" = "ripunzip"; + "g" = "lazygit"; + "l" = "eza"; + "la" = "eza -a"; + "ls" = "eza"; + "ns" = "nh os switch"; + "vi" = "nvim"; + "vim" = "nvim"; + # keep-sorted end + }; +} From 3f069b939135ecddddb97893b9b89cfaf2a84f9e Mon Sep 17 00:00:00 2001 From: wi11-holdsworth <83637728+wi11-holdsworth@users.noreply.github.com> Date: Tue, 20 Jan 2026 14:59:20 +1100 Subject: [PATCH 04/47] feat(homepage-dashboard): use equal heights in all sections --- modules/nixos/features/homepage-dashboard.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/modules/nixos/features/homepage-dashboard.nix b/modules/nixos/features/homepage-dashboard.nix index 3ab99c5..425587f 100644 --- a/modules/nixos/features/homepage-dashboard.nix +++ b/modules/nixos/features/homepage-dashboard.nix @@ -325,6 +325,7 @@ in "Services" = { style = "row"; columns = 4; + useEqualHeights = true; }; } { @@ -338,6 +339,7 @@ in "Utilities" = { style = "row"; columns = 3; + useEqualHeights = true; }; } ]; From b9ec41d4621c67cbbcf2d7fdd5ad8a50972ad7a0 Mon Sep 17 00:00:00 2001 From: wi11-holdsworth <83637728+wi11-holdsworth@users.noreply.github.com> Date: Tue, 20 Jan 2026 15:02:24 +1100 Subject: [PATCH 05/47] refactor(homepage-dashboard): remove unnecessary quotes around non-spaced words --- modules/nixos/features/homepage-dashboard.nix | 298 +++++++++--------- 1 file changed, 149 insertions(+), 149 deletions(-) diff --git a/modules/nixos/features/homepage-dashboard.nix b/modules/nixos/features/homepage-dashboard.nix index 425587f..d56c755 100644 --- a/modules/nixos/features/homepage-dashboard.nix +++ b/modules/nixos/features/homepage-dashboard.nix @@ -50,106 +50,106 @@ in { "Media Management" = [ { - "Radarr" = { - "description" = "Movie collection manager"; - "icon" = "radarr.svg"; - "href" = "https://radarr.fi33.buzz/"; - "widget" = { - "type" = "radarr"; - "url" = "https://radarr.fi33.buzz/"; - "key" = "@radarr@"; - "enableQueue" = true; + Radarr = { + description = "Movie collection manager"; + icon = "radarr.svg"; + href = "https://radarr.fi33.buzz/"; + widget = { + type = "radarr"; + url = "https://radarr.fi33.buzz/"; + key = "@radarr@"; + enableQueue = true; }; }; } { - "Sonarr" = { - "description" = "TV show collection manager"; - "icon" = "sonarr.svg"; - "href" = "https://sonarr.fi33.buzz/"; - "widget" = { - "type" = "sonarr"; - "url" = "https://sonarr.fi33.buzz/"; - "key" = "@sonarr@"; - "enableQueue" = true; + Sonarr = { + description = "TV show collection manager"; + icon = "sonarr.svg"; + href = "https://sonarr.fi33.buzz/"; + widget = { + type = "sonarr"; + url = "https://sonarr.fi33.buzz/"; + key = "@sonarr@"; + enableQueue = true; }; }; } { - "Lidarr" = { - "description" = "Music collection manager"; - "icon" = "lidarr.svg"; - "href" = "https://lidarr.fi33.buzz/"; - "widget" = { - "type" = "lidarr"; - "url" = "https://lidarr.fi33.buzz/"; - "key" = "@lidarr@"; - "enableQueue" = true; + Lidarr = { + description = "Music collection manager"; + icon = "lidarr.svg"; + href = "https://lidarr.fi33.buzz/"; + widget = { + type = "lidarr"; + url = "https://lidarr.fi33.buzz/"; + key = "@lidarr@"; + enableQueue = true; }; }; } { - "Readarr" = { - "description" = "Book collection manager"; - "icon" = "readarr.svg"; - "href" = "https://readarr.fi33.buzz/"; - "widget" = { - "type" = "readarr"; - "url" = "https://readarr.fi33.buzz/"; - "key" = "@readarr@"; - "enableQueue" = true; + Readarr = { + description = "Book collection manager"; + icon = "readarr.svg"; + href = "https://readarr.fi33.buzz/"; + widget = { + type = "readarr"; + url = "https://readarr.fi33.buzz/"; + key = "@readarr@"; + enableQueue = true; }; }; } { - "Bazarr" = { - "description" = "Subtitle downloader and manager"; - "icon" = "bazarr.svg"; - "href" = "https://bazarr.fi33.buzz/"; - "widget" = { - "type" = "bazarr"; - "url" = "https://bazarr.fi33.buzz/"; - "key" = "@bazarr@"; + Bazarr = { + description = "Subtitle downloader and manager"; + icon = "bazarr.svg"; + href = "https://bazarr.fi33.buzz/"; + widget = { + type = "bazarr"; + url = "https://bazarr.fi33.buzz/"; + key = "@bazarr@"; }; }; } { - "Prowlarr" = { - "description" = "Indexer management tool"; - "icon" = "prowlarr.svg"; - "href" = "https://prowlarr.fi33.buzz/"; - "widget" = { - "type" = "prowlarr"; - "url" = "https://prowlarr.fi33.buzz/"; - "key" = "@prowlarr@"; + Prowlarr = { + description = "Indexer management tool"; + icon = "prowlarr.svg"; + href = "https://prowlarr.fi33.buzz/"; + widget = { + type = "prowlarr"; + url = "https://prowlarr.fi33.buzz/"; + key = "@prowlarr@"; }; }; } { - "NZBget" = { - "description" = "Usenet client"; - "icon" = "nzbget.svg"; - "href" = "https://nzbget.fi33.buzz/"; - "widget" = { - "type" = "nzbget"; - "url" = "https://nzbget.fi33.buzz/"; - "username" = "nzbget"; - "password" = "@nzbget@"; + NZBget = { + description = "Usenet client"; + icon = "nzbget.svg"; + href = "https://nzbget.fi33.buzz/"; + widget = { + type = "nzbget"; + url = "https://nzbget.fi33.buzz/"; + username = "nzbget"; + password = "@nzbget@"; }; }; } { - "qui" = { - "description" = "qBittorrent front end"; - "icon" = "qui.svg"; - "href" = "https://qui.fi33.buzz/"; + qui = { + description = "qBittorrent front end"; + icon = "qui.svg"; + href = "https://qui.fi33.buzz/"; }; } { - "qBittorrent" = { - "description" = "BitTorrent client"; - "icon" = "qbittorrent.svg"; - "href" = "https://qbittorrent.fi33.buzz/"; + qBittorrent = { + description = "BitTorrent client"; + icon = "qbittorrent.svg"; + href = "https://qbittorrent.fi33.buzz/"; }; } ]; @@ -157,38 +157,38 @@ in { "Media Streaming" = [ { - "Immich" = { - "description" = "Photo backup"; - "icon" = "immich.svg"; - "href" = "https://immich.fi33.buzz/"; - "widget" = { - "type" = "immich"; - "fields" = [ + Immich = { + description = "Photo backup"; + icon = "immich.svg"; + href = "https://immich.fi33.buzz/"; + widget = { + type = "immich"; + fields = [ "users" "photos" "videos" "storage" ]; - "url" = "https://immich.fi33.buzz/"; - "version" = 2; - "key" = "@immich@"; + url = "https://immich.fi33.buzz/"; + version = 2; + key = "@immich@"; }; }; } { - "Jellyfin" = { - "description" = "Media streaming"; - "icon" = "jellyfin.svg"; - "href" = "https://jellyfin.fi33.buzz/"; - "widget" = { - "type" = "jellyfin"; - "url" = "https://jellyfin.fi33.buzz/"; - "key" = "@jellyfin@"; - "enableBlocks" = true; - "enableNowPlaying" = true; - "enableUser" = true; - "showEpisodeNumber" = true; - "expandOneStreamToTwoRows" = false; + Jellyfin = { + description = "Media streaming"; + icon = "jellyfin.svg"; + href = "https://jellyfin.fi33.buzz/"; + widget = { + type = "jellyfin"; + url = "https://jellyfin.fi33.buzz/"; + key = "@jellyfin@"; + enableBlocks = true; + enableNowPlaying = true; + enableUser = true; + showEpisodeNumber = true; + expandOneStreamToTwoRows = false; }; }; } @@ -205,46 +205,46 @@ in }; } { - "Karakeep" = { - "description" = "Web clipper"; - "icon" = "karakeep.svg"; - "href" = "https://karakeep.fi33.buzz/"; - "widget" = { - "type" = "karakeep"; - "url" = "https://karakeep.fi33.buzz/"; - "key" = "@karakeep@"; + Karakeep = { + description = "Web clipper"; + icon = "karakeep.svg"; + href = "https://karakeep.fi33.buzz/"; + widget = { + type = "karakeep"; + url = "https://karakeep.fi33.buzz/"; + key = "@karakeep@"; }; }; } { - "Miniflux" = { - "description" = "RSS aggregator"; - "icon" = "miniflux.svg"; - "href" = "https://miniflux.fi33.buzz/"; - "widget" = { - "type" = "miniflux"; - "url" = "https://miniflux.fi33.buzz/"; - "key" = "@miniflux@"; + Miniflux = { + description = "RSS aggregator"; + icon = "miniflux.svg"; + href = "https://miniflux.fi33.buzz/"; + widget = { + type = "miniflux"; + url = "https://miniflux.fi33.buzz/"; + key = "@miniflux@"; }; }; } { - "Paperless" = { - "description" = "Digital filing cabinet"; - "icon" = "paperless.svg"; - "href" = "https://paperless.fi33.buzz/"; - "widget" = { - "type" = "paperlessngx"; - "url" = "https://paperless.fi33.buzz/"; - "username" = "admin"; - "password" = "@paperless@"; + Paperless = { + description = "Digital filing cabinet"; + icon = "paperless.svg"; + href = "https://paperless.fi33.buzz/"; + widget = { + type = "paperlessngx"; + url = "https://paperless.fi33.buzz/"; + username = "admin"; + password = "@paperless@"; }; }; } ]; } { - "Services" = [ + Services = [ { "copyparty" = { "description" = "Cloud file manager"; @@ -253,56 +253,56 @@ in }; } { - "CouchDB" = { - "description" = "Obsidian sync database"; - "icon" = "couchdb.svg"; - "href" = "https://couchdb.fi33.buzz/_utils/"; + CouchDB = { + description = "Obsidian sync database"; + icon = "couchdb.svg"; + href = "https://couchdb.fi33.buzz/_utils/"; }; } { - "Firefly" = { - "description" = "Budget Planner"; - "icon" = "firefly-iii.svg"; - "href" = "https://firefly.fi33.buzz/"; + Firefly = { + description = "Budget Planner"; + icon = "firefly-iii.svg"; + href = "https://firefly.fi33.buzz/"; }; } { - "ntfy" = { - "description" = "Notification service"; - "icon" = "ntfy.svg"; - "href" = "https://ntfy-sh.fi33.buzz/"; + ntfy = { + description = "Notification service"; + icon = "ntfy.svg"; + href = "https://ntfy-sh.fi33.buzz/"; }; } { - "Radicale" = { - "description" = "CalDAV/CardDAV service"; - "icon" = "radicale.svg"; - "href" = "https://radicale.fi33.buzz"; + Radicale = { + description = "CalDAV/CardDAV service"; + icon = "radicale.svg"; + href = "https://radicale.fi33.buzz"; }; } { - "Syncthing" = { - "description" = "Decentralised file synchronisation"; - "icon" = "syncthing.svg"; - "href" = "https://syncthing.fi33.buzz/"; + Syncthing = { + description = "Decentralised file synchronisation"; + icon = "syncthing.svg"; + href = "https://syncthing.fi33.buzz/"; }; } { - "Vaultwarden" = { - "description" = "Password manager"; - "icon" = "vaultwarden.svg"; - "href" = "https://vaultwarden.fi33.buzz/"; + Vaultwarden = { + description = "Password manager"; + icon = "vaultwarden.svg"; + href = "https://vaultwarden.fi33.buzz/"; }; } ]; } { - "Utilities" = [ + Utilities = [ { - "NanoKVM" = { - "description" = "Remote KVM switch"; - "icon" = "mdi-console.svg"; - "href" = "http://nano-kvm/"; + NanoKVM = { + description = "Remote KVM switch"; + icon = "mdi-console.svg"; + href = "http://nano-kvm/"; }; } ]; @@ -322,7 +322,7 @@ in }; } { - "Services" = { + Services = { style = "row"; columns = 4; useEqualHeights = true; @@ -336,7 +336,7 @@ in }; } { - "Utilities" = { + Utilities = { style = "row"; columns = 3; useEqualHeights = true; From ce72f5129a6017ba46bd4684e966615ebced3a7a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Mon, 16 Feb 2026 16:15:54 +0000 Subject: [PATCH 06/47] flake.lock: Update MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Flake lock file updates: • Updated input 'agenix': 'github:ryantm/agenix/fcdea22' (2025-11-08) → 'github:ryantm/agenix/b027ee2' (2026-02-04) • Updated input 'copyparty': 'github:9001/copyparty/d5a8a34' (2026-01-12) → 'github:9001/copyparty/d067d2a' (2026-02-14) • Updated input 'home-manager': 'github:nix-community/home-manager/8bc5473' (2026-01-10) → 'github:nix-community/home-manager/ae8003d' (2026-02-15) • Updated input 'nix-citizen': 'github:LovingMelody/nix-citizen/7b5ad5f' (2026-01-10) → 'github:LovingMelody/nix-citizen/2affbcd' (2026-02-13) • Updated input 'nix-citizen/flake-parts': 'github:hercules-ci/flake-parts/250481a' (2026-01-05) → 'github:hercules-ci/flake-parts/5792860' (2026-02-02) • Updated input 'nix-citizen/nixpkgs': 'github:NixOS/nixpkgs/3497aa5' (2026-01-08) → 'github:NixOS/nixpkgs/ec7c70d' (2026-02-11) • Updated input 'nix-citizen/treefmt-nix': 'github:numtide/treefmt-nix/778a1d6' (2026-01-07) → 'github:numtide/treefmt-nix/337a4fe' (2026-02-04) • Updated input 'nix-gaming': 'github:fufexan/nix-gaming/c104472' (2026-01-13) → 'github:fufexan/nix-gaming/0c4bf3a' (2026-02-15) • Updated input 'nix-gaming/flake-parts': 'github:hercules-ci/flake-parts/250481a' (2026-01-05) → 'github:hercules-ci/flake-parts/5792860' (2026-02-02) • Updated input 'nix-gaming/flake-parts/nixpkgs-lib': 'github:nix-community/nixpkgs.lib/2075416' (2025-12-14) → 'github:nix-community/nixpkgs.lib/7271616' (2026-02-01) • Updated input 'nix-gaming/nixpkgs': 'github:NixOS/nixpkgs/3146c6a' (2026-01-10) → 'github:NixOS/nixpkgs/2343bbb' (2026-02-11) • Updated input 'nixpkgs': 'github:nixos/nixpkgs/ffbc9f8' (2026-01-11) → 'github:nixos/nixpkgs/a82ccc3' (2026-02-13) • Updated input 'nixvim': 'github:nix-community/nixvim/7eb8f36' (2026-01-08) → 'github:nix-community/nixvim/ed0424f' (2026-02-15) • Updated input 'nixvim/flake-parts': 'github:hercules-ci/flake-parts/a34fae9' (2025-12-15) → 'github:hercules-ci/flake-parts/5792860' (2026-02-02) • Updated input 'nur': 'github:nix-community/NUR/ecccc8e' (2026-01-12) → 'github:nix-community/NUR/76daea0' (2026-02-16) --- flake.lock | 90 +++++++++++++++++++++++++++--------------------------- 1 file changed, 45 insertions(+), 45 deletions(-) diff --git a/flake.lock b/flake.lock index dd23c79..f754091 100644 --- a/flake.lock +++ b/flake.lock @@ -10,11 +10,11 @@ "systems": "systems" }, "locked": { - "lastModified": 1762618334, - "narHash": "sha256-wyT7Pl6tMFbFrs8Lk/TlEs81N6L+VSybPfiIgzU8lbQ=", + "lastModified": 1770165109, + "narHash": "sha256-9VnK6Oqai65puVJ4WYtCTvlJeXxMzAp/69HhQuTdl/I=", "owner": "ryantm", "repo": "agenix", - "rev": "fcdea223397448d35d9b31f798479227e80183f6", + "rev": "b027ee29d959fda4b60b57566d64c98a202e0feb", "type": "github" }, "original": { @@ -29,11 +29,11 @@ "nixpkgs": "nixpkgs" }, "locked": { - "lastModified": 1768232598, - "narHash": "sha256-G+KqlGfXQ8PWvJbG5IqSBJcNLltS+erRkVhn9D0UBM4=", + "lastModified": 1771111169, + "narHash": "sha256-WNHK8xPTw4uHn/Y3ClSCPJj1rfXlsHElUDDPZi2LH6Q=", "owner": "9001", "repo": "copyparty", - "rev": "d5a8a34bcafde04165c4e07e4885b11f6ddd2aff", + "rev": "d067d2a6384e159d4d950a4a596a1f91af14f0c5", "type": "github" }, "original": { @@ -72,11 +72,11 @@ ] }, "locked": { - "lastModified": 1767609335, - "narHash": "sha256-feveD98mQpptwrAEggBQKJTYbvwwglSbOv53uCfH9PY=", + "lastModified": 1769996383, + "narHash": "sha256-AnYjnFWgS49RlqX7LrC4uA+sCCDBj0Ry/WOJ5XWAsa0=", "owner": "hercules-ci", "repo": "flake-parts", - "rev": "250481aafeb741edfe23d29195671c19b36b6dca", + "rev": "57928607ea566b5db3ad13af0e57e921e6b12381", "type": "github" }, "original": { @@ -90,11 +90,11 @@ "nixpkgs-lib": "nixpkgs-lib" }, "locked": { - "lastModified": 1767609335, - "narHash": "sha256-feveD98mQpptwrAEggBQKJTYbvwwglSbOv53uCfH9PY=", + "lastModified": 1769996383, + "narHash": "sha256-AnYjnFWgS49RlqX7LrC4uA+sCCDBj0Ry/WOJ5XWAsa0=", "owner": "hercules-ci", "repo": "flake-parts", - "rev": "250481aafeb741edfe23d29195671c19b36b6dca", + "rev": "57928607ea566b5db3ad13af0e57e921e6b12381", "type": "github" }, "original": { @@ -111,11 +111,11 @@ ] }, "locked": { - "lastModified": 1765835352, - "narHash": "sha256-XswHlK/Qtjasvhd1nOa1e8MgZ8GS//jBoTqWtrS1Giw=", + "lastModified": 1769996383, + "narHash": "sha256-AnYjnFWgS49RlqX7LrC4uA+sCCDBj0Ry/WOJ5XWAsa0=", "owner": "hercules-ci", "repo": "flake-parts", - "rev": "a34fae9c08a15ad73f295041fec82323541400a9", + "rev": "57928607ea566b5db3ad13af0e57e921e6b12381", "type": "github" }, "original": { @@ -188,11 +188,11 @@ ] }, "locked": { - "lastModified": 1768068402, - "narHash": "sha256-bAXnnJZKJiF7Xr6eNW6+PhBf1lg2P1aFUO9+xgWkXfA=", + "lastModified": 1771188132, + "narHash": "sha256-qLXxN/tPrZtnekaLBQuVtxQfvqqs5cT5WbyH4zZaTGI=", "owner": "nix-community", "repo": "home-manager", - "rev": "8bc5473b6bc2b6e1529a9c4040411e1199c43b4c", + "rev": "ae8003d8b61d0d373e7ca3da1a48f9c870d15df9", "type": "github" }, "original": { @@ -213,11 +213,11 @@ "treefmt-nix": "treefmt-nix" }, "locked": { - "lastModified": 1768085843, - "narHash": "sha256-fwh2ImVwwHWsUhem3xlscEM6n7q4rkeKXEv25QWdzjs=", + "lastModified": 1771024909, + "narHash": "sha256-nCTsyqZqKJDSjzxE3GcNAp685SrU5Qa01+b1d3fHvho=", "owner": "LovingMelody", "repo": "nix-citizen", - "rev": "7b5ad5f6593893cc70c30a5ce45028ea0cd97ab3", + "rev": "2affbcd1cbc73d68b38f1b0de1184f55e61f0ad0", "type": "github" }, "original": { @@ -232,11 +232,11 @@ "nixpkgs": "nixpkgs_3" }, "locked": { - "lastModified": 1768269856, - "narHash": "sha256-O7Qy+w2fK4kBq2I70haCDJYpzbpPW58FscHpRzw9lfA=", + "lastModified": 1771123156, + "narHash": "sha256-Px1IFFTw3zdP8RNram2g41EvUTjIZRDLCgZyXgpBty0=", "owner": "fufexan", "repo": "nix-gaming", - "rev": "c104472764fc9e8926e40ccc7e0e6d540d718458", + "rev": "0c4bf3ac4eaf5b693e5d7ae75f3caba8fcf15d8f", "type": "github" }, "original": { @@ -283,11 +283,11 @@ }, "nixpkgs-lib": { "locked": { - "lastModified": 1765674936, - "narHash": "sha256-k00uTP4JNfmejrCLJOwdObYC9jHRrr/5M/a/8L2EIdo=", + "lastModified": 1769909678, + "narHash": "sha256-cBEymOf4/o3FD5AZnzC3J9hLbiZ+QDT/KDuyHXVJOpM=", "owner": "nix-community", "repo": "nixpkgs.lib", - "rev": "2075416fcb47225d9b68ac469a5c4801a9c4dd85", + "rev": "72716169fe93074c333e8d0173151350670b824c", "type": "github" }, "original": { @@ -298,11 +298,11 @@ }, "nixpkgs_2": { "locked": { - "lastModified": 1767892417, - "narHash": "sha256-dhhvQY67aboBk8b0/u0XB6vwHdgbROZT3fJAjyNh5Ww=", + "lastModified": 1770841267, + "narHash": "sha256-9xejG0KoqsoKEGp2kVbXRlEYtFFcDTHjidiuX8hGO44=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "3497aa5c9457a9d88d71fa93a4a8368816fbeeba", + "rev": "ec7c70d12ce2fc37cb92aff673dcdca89d187bae", "type": "github" }, "original": { @@ -314,11 +314,11 @@ }, "nixpkgs_3": { "locked": { - "lastModified": 1768032153, - "narHash": "sha256-6kD1MdY9fsE6FgSwdnx29hdH2UcBKs3/+JJleMShuJg=", + "lastModified": 1770843696, + "narHash": "sha256-LovWTGDwXhkfCOmbgLVA10bvsi/P8eDDpRudgk68HA8=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "3146c6aa9995e7351a398e17470e15305e6e18ff", + "rev": "2343bbb58f99267223bc2aac4fc9ea301a155a16", "type": "github" }, "original": { @@ -330,11 +330,11 @@ }, "nixpkgs_4": { "locked": { - "lastModified": 1768127708, - "narHash": "sha256-1Sm77VfZh3mU0F5OqKABNLWxOuDeHIlcFjsXeeiPazs=", + "lastModified": 1771008912, + "narHash": "sha256-gf2AmWVTs8lEq7z/3ZAsgnZDhWIckkb+ZnAo5RzSxJg=", "owner": "nixos", "repo": "nixpkgs", - "rev": "ffbc9f8cbaacfb331b6017d5a5abb21a492c9a38", + "rev": "a82ccc39b39b621151d6732718e3e250109076fa", "type": "github" }, "original": { @@ -353,11 +353,11 @@ "systems": "systems_3" }, "locked": { - "lastModified": 1767906546, - "narHash": "sha256-AoSWS8+P+7hQ/jIdv0wBjgH1MvnerdWBFXO4GV3JoQs=", + "lastModified": 1771135771, + "narHash": "sha256-wyvBIhDuyCRyjB3yPg77qoyxrlgQtBR1rVW3c9knV3E=", "owner": "nix-community", "repo": "nixvim", - "rev": "7eb8f36f085b85a2aeff929aff52d0f6aa14e000", + "rev": "ed0424f0b08d303a7348f52f7850ad1b2704f9ba", "type": "github" }, "original": { @@ -374,11 +374,11 @@ ] }, "locked": { - "lastModified": 1768233111, - "narHash": "sha256-+ispedVffXCQUVDCgJDY6USEILM8rZsEZaxPZdXzKtA=", + "lastModified": 1771256997, + "narHash": "sha256-zSKbic6sOY5U+nhyoyx7/EBsHEdBOfwdA3lf81Bvk3k=", "owner": "nix-community", "repo": "NUR", - "rev": "ecccc8eec0e39e4b8bf12dc73d57083e4682f162", + "rev": "76daea059507c8058d4518d8d95775f4a5bc954f", "type": "github" }, "original": { @@ -452,11 +452,11 @@ ] }, "locked": { - "lastModified": 1767801790, - "narHash": "sha256-QfX6g3Wj2vQe7oBJEbTf0npvC6sJoDbF9hb2+gM5tf8=", + "lastModified": 1770228511, + "narHash": "sha256-wQ6NJSuFqAEmIg2VMnLdCnUc0b7vslUohqqGGD+Fyxk=", "owner": "numtide", "repo": "treefmt-nix", - "rev": "778a1d691f1ef45dd68c661715c5bf8cbf131c80", + "rev": "337a4fe074be1042a35086f15481d763b8ddc0e7", "type": "github" }, "original": { From c0e7f6f64970120f5a9eafd93218657b333cbe30 Mon Sep 17 00:00:00 2001 From: wi11-holdsworth <83637728+wi11-holdsworth@users.noreply.github.com> Date: Wed, 18 Feb 2026 19:22:10 +1100 Subject: [PATCH 07/47] fix: nexus mods app is no longer maintained --- modules/nixos/features/gaming.nix | 1 - 1 file changed, 1 deletion(-) diff --git a/modules/nixos/features/gaming.nix b/modules/nixos/features/gaming.nix index 2bae347..94c90ae 100644 --- a/modules/nixos/features/gaming.nix +++ b/modules/nixos/features/gaming.nix @@ -7,7 +7,6 @@ # keep-sorted start heroic mangohud - nexusmods-app prismlauncher protonup-qt wine From a54857c3659c31a20822ea80654899b1fc02793a Mon Sep 17 00:00:00 2001 From: wi11-holdsworth <83637728+wi11-holdsworth@users.noreply.github.com> Date: Sat, 21 Feb 2026 23:12:46 +1100 Subject: [PATCH 08/47] refactor: remove software associated with llms --- hosts/desktop/configuration.nix | 1 - hosts/server/configuration.nix | 6 ---- modules/home-manager/bundles/dev.nix | 1 - modules/home-manager/default.nix | 3 +- modules/home-manager/features/bash.nix | 4 +++ modules/home-manager/features/firefox.nix | 1 - modules/home-manager/features/zellij.nix | 1 - modules/home-manager/features/zoxide.nix | 1 - modules/nixos/bundles/dev.nix | 5 ---- modules/nixos/bundles/gui.nix | 4 +-- modules/nixos/bundles/server.nix | 4 --- modules/nixos/default.nix | 2 -- modules/nixos/features/homepage-dashboard.nix | 29 +------------------ 13 files changed, 8 insertions(+), 54 deletions(-) create mode 100644 modules/home-manager/features/bash.nix diff --git a/hosts/desktop/configuration.nix b/hosts/desktop/configuration.nix index 982b9a1..2ae8322 100644 --- a/hosts/desktop/configuration.nix +++ b/hosts/desktop/configuration.nix @@ -18,7 +18,6 @@ "external-speakers" "gaming" "link2c" - "llm" "plasma" "star-citizen" # keep-sorted end diff --git a/hosts/server/configuration.nix b/hosts/server/configuration.nix index 2e6b0b8..aff95a3 100644 --- a/hosts/server/configuration.nix +++ b/hosts/server/configuration.nix @@ -30,12 +30,6 @@ fsType = "ext4"; options = [ "nofail" - "defaults" - "user" - "rw" - "utf8" - "noauto" - "umask=000" ]; }; diff --git a/modules/home-manager/bundles/dev.nix b/modules/home-manager/bundles/dev.nix index c5510a2..8b0003b 100644 --- a/modules/home-manager/bundles/dev.nix +++ b/modules/home-manager/bundles/dev.nix @@ -6,7 +6,6 @@ imports = util.toImports ../features [ # keep-sorted start "direnv" - "zed-editor" # keep-sorted end ]; } diff --git a/modules/home-manager/default.nix b/modules/home-manager/default.nix index 797b6e2..eed9e76 100644 --- a/modules/home-manager/default.nix +++ b/modules/home-manager/default.nix @@ -6,13 +6,12 @@ imports = util.toImports ./features [ # keep-sorted start "agenix" + "bash" "bat" "bottom" "delta" "eza" "fd" - "fish" - "gh" "git" "lazygit" "shell-aliases" diff --git a/modules/home-manager/features/bash.nix b/modules/home-manager/features/bash.nix new file mode 100644 index 0000000..4f7de2a --- /dev/null +++ b/modules/home-manager/features/bash.nix @@ -0,0 +1,4 @@ +{ + home.shell.enableBashIntegration = true; + programs.bash.enable = true; +} diff --git a/modules/home-manager/features/firefox.nix b/modules/home-manager/features/firefox.nix index e7adee0..4231d89 100644 --- a/modules/home-manager/features/firefox.nix +++ b/modules/home-manager/features/firefox.nix @@ -75,7 +75,6 @@ # detect-cloudflare bitwarden dearrow - floccus nixpkgs-pr-tracker react-devtools return-youtube-dislikes diff --git a/modules/home-manager/features/zellij.nix b/modules/home-manager/features/zellij.nix index f7222ed..43d706b 100644 --- a/modules/home-manager/features/zellij.nix +++ b/modules/home-manager/features/zellij.nix @@ -4,7 +4,6 @@ settings = { theme = "catppuccin-mocha"; show_startup_tips = false; - default_shell = "fish"; }; }; } diff --git a/modules/home-manager/features/zoxide.nix b/modules/home-manager/features/zoxide.nix index 06cb837..61faad9 100644 --- a/modules/home-manager/features/zoxide.nix +++ b/modules/home-manager/features/zoxide.nix @@ -1,7 +1,6 @@ { programs.zoxide = { enable = true; - enableBashIntegration = true; options = [ "--cmd j" ]; diff --git a/modules/nixos/bundles/dev.nix b/modules/nixos/bundles/dev.nix index b9eb440..2af44dc 100644 --- a/modules/nixos/bundles/dev.nix +++ b/modules/nixos/bundles/dev.nix @@ -7,12 +7,7 @@ # keep-sorted start bacon cargo-info - devenv - just mask - # rusty-man - vscode # keep-sorted end ]; - } diff --git a/modules/nixos/bundles/gui.nix b/modules/nixos/bundles/gui.nix index d1b81bc..9459711 100644 --- a/modules/nixos/bundles/gui.nix +++ b/modules/nixos/bundles/gui.nix @@ -14,10 +14,10 @@ environment.systemPackages = with pkgs; [ # keep-sorted start - beeper cameractrls-gtk3 jellyfin-desktop - onlyoffice-desktopeditors + libreoffice + signal-desktop textsnatcher # keep-sorted end ]; diff --git a/modules/nixos/bundles/server.nix b/modules/nixos/bundles/server.nix index b7f4b53..7a6bac2 100644 --- a/modules/nixos/bundles/server.nix +++ b/modules/nixos/bundles/server.nix @@ -9,11 +9,9 @@ "caddy" "copyparty" "couchdb" - "firefly" "homepage-dashboard" "immich" "jellyfin" - "karakeep" "kavita" "lidarr" "miniflux" @@ -22,13 +20,11 @@ "paperless" "prowlarr" "qbittorrent" - "qui" "radarr" "radicale" "readarr" "sonarr" "syncthing" - "upbank2firefly" "vaultwarden" # keep-sorted end ]; diff --git a/modules/nixos/default.nix b/modules/nixos/default.nix index 0c733d4..c1243e6 100644 --- a/modules/nixos/default.nix +++ b/modules/nixos/default.nix @@ -26,8 +26,6 @@ # keep-sorted start broot # large directory browser choose # cut - circumflex # hacker news browsing - cointop # crypto ticker ddgr # web search doggo # dns dua # du diff --git a/modules/nixos/features/homepage-dashboard.nix b/modules/nixos/features/homepage-dashboard.nix index d56c755..2933366 100644 --- a/modules/nixos/features/homepage-dashboard.nix +++ b/modules/nixos/features/homepage-dashboard.nix @@ -26,7 +26,6 @@ let "bazarr" "immich" "jellyfin" - "karakeep" "kavita-api" "lidarr" "miniflux" @@ -138,13 +137,6 @@ in }; }; } - { - qui = { - description = "qBittorrent front end"; - icon = "qui.svg"; - href = "https://qui.fi33.buzz/"; - }; - } { qBittorrent = { description = "BitTorrent client"; @@ -204,18 +196,6 @@ in }; }; } - { - Karakeep = { - description = "Web clipper"; - icon = "karakeep.svg"; - href = "https://karakeep.fi33.buzz/"; - widget = { - type = "karakeep"; - url = "https://karakeep.fi33.buzz/"; - key = "@karakeep@"; - }; - }; - } { Miniflux = { description = "RSS aggregator"; @@ -259,13 +239,6 @@ in href = "https://couchdb.fi33.buzz/_utils/"; }; } - { - Firefly = { - description = "Budget Planner"; - icon = "firefly-iii.svg"; - href = "https://firefly.fi33.buzz/"; - }; - } { ntfy = { description = "Notification service"; @@ -324,7 +297,7 @@ in { Services = { style = "row"; - columns = 4; + columns = 3; useEqualHeights = true; }; } From 3323c6ba7aeefdd09f13dd428231d8892e8cfa45 Mon Sep 17 00:00:00 2001 From: wi11-holdsworth <83637728+wi11-holdsworth@users.noreply.github.com> Date: Sat, 21 Feb 2026 23:13:18 +1100 Subject: [PATCH 09/47] fix(syncthing): only needs to be defined in the default module, not also the server module --- modules/nixos/bundles/server.nix | 1 - 1 file changed, 1 deletion(-) diff --git a/modules/nixos/bundles/server.nix b/modules/nixos/bundles/server.nix index 7a6bac2..2795aca 100644 --- a/modules/nixos/bundles/server.nix +++ b/modules/nixos/bundles/server.nix @@ -24,7 +24,6 @@ "radicale" "readarr" "sonarr" - "syncthing" "vaultwarden" # keep-sorted end ]; From b6dafe490811eab4a788b9c8eba0a11b2071ad29 Mon Sep 17 00:00:00 2001 From: wi11-holdsworth <83637728+wi11-holdsworth@users.noreply.github.com> Date: Sat, 21 Feb 2026 23:30:05 +1100 Subject: [PATCH 10/47] fix(yazi): update shell wrapper name --- modules/home-manager/features/yazi.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/home-manager/features/yazi.nix b/modules/home-manager/features/yazi.nix index ed4affc..42575dd 100644 --- a/modules/home-manager/features/yazi.nix +++ b/modules/home-manager/features/yazi.nix @@ -5,6 +5,7 @@ { programs.yazi = { enable = true; + shellWrapperName = "y"; plugins = { # keep-sorted start diff = pkgs.yaziPlugins.diff; From 9bdffc9a3a02200d801384973231d2734129d3f5 Mon Sep 17 00:00:00 2001 From: wi11-holdsworth <83637728+wi11-holdsworth@users.noreply.github.com> Date: Sun, 22 Feb 2026 16:47:21 +1100 Subject: [PATCH 11/47] fix(copyparty): support reverse proxies --- modules/nixos/features/copyparty.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/modules/nixos/features/copyparty.nix b/modules/nixos/features/copyparty.nix index bd31797..7994bf3 100644 --- a/modules/nixos/features/copyparty.nix +++ b/modules/nixos/features/copyparty.nix @@ -21,6 +21,8 @@ in e2ts = true; e2vu = true; p = port; + xff-hdr = "x-forwarded-for"; + rproxy = 1; }; accounts.will.passwordFile = config.age.secrets.copyparty-will.path; From fbd4da91c07198bb6a7f61c653ed35545e052af5 Mon Sep 17 00:00:00 2001 From: wi11-holdsworth <83637728+wi11-holdsworth@users.noreply.github.com> Date: Sun, 22 Feb 2026 16:47:38 +1100 Subject: [PATCH 12/47] fix(copyparty): disable read access for all non-users --- modules/nixos/features/copyparty.nix | 1 - 1 file changed, 1 deletion(-) diff --git a/modules/nixos/features/copyparty.nix b/modules/nixos/features/copyparty.nix index 7994bf3..73006f6 100644 --- a/modules/nixos/features/copyparty.nix +++ b/modules/nixos/features/copyparty.nix @@ -30,7 +30,6 @@ in volumes."/" = { path = "/srv/copyparty"; access = { - r = "*"; A = [ "will" ]; }; }; From 3c46d9e066e6b7d5105f1433d486459780581f92 Mon Sep 17 00:00:00 2001 From: wi11-holdsworth <83637728+wi11-holdsworth@users.noreply.github.com> Date: Sun, 22 Feb 2026 16:49:11 +1100 Subject: [PATCH 13/47] feat: prepare for exposure to the internet * open ports 80 and 443 * password-protect copyparty and ntfy-sh * randomise usernames for radicale and copyparty --- hosts/server/configuration.nix | 8 +++++++- modules/nixos/features/borgmatic.nix | 3 +++ modules/nixos/features/caddy.nix | 1 + modules/nixos/features/copyparty.nix | 8 ++++---- modules/nixos/features/ntfy-sh.nix | 12 ++++++++++++ secrets/borgmatic-ntfy.age | 9 +++++++++ secrets/{copyparty-will.age => copyparty.age} | Bin secrets/radicale.age | Bin 492 -> 498 bytes secrets/secrets.nix | 3 ++- 9 files changed, 38 insertions(+), 6 deletions(-) create mode 100644 secrets/borgmatic-ntfy.age rename secrets/{copyparty-will.age => copyparty.age} (100%) diff --git a/hosts/server/configuration.nix b/hosts/server/configuration.nix index aff95a3..a331fc7 100644 --- a/hosts/server/configuration.nix +++ b/hosts/server/configuration.nix @@ -33,7 +33,13 @@ ]; }; - networking.hostName = "${hostName}"; + networking = { + hostName = "${hostName}"; + firewall.interfaces."enp2s0".allowedTCPPorts = [ + 80 + 443 + ]; + }; # hardened openssh services.openssh = { diff --git a/modules/nixos/features/borgmatic.nix b/modules/nixos/features/borgmatic.nix index bd45777..6628f8e 100644 --- a/modules/nixos/features/borgmatic.nix +++ b/modules/nixos/features/borgmatic.nix @@ -20,6 +20,8 @@ ntfy = { topic = "backups"; server = config.services.ntfy-sh.settings.base-url; + username = "borgmatic"; + password = "{credential file ${config.age.secrets.borgmatic-ntfy.path}}"; finish = { title = "Ping!"; message = "Your backups have succeeded :)"; @@ -78,6 +80,7 @@ # secrets age.secrets = { "borgmatic".file = ../../../secrets/borgmatic.age; + "borgmatic-ntfy".file = ../../../secrets/borgmatic-ntfy.age; "borgmatic-pg".file = ../../../secrets/borgmatic-pg.age; }; } diff --git a/modules/nixos/features/caddy.nix b/modules/nixos/features/caddy.nix index ca45981..4c8978a 100644 --- a/modules/nixos/features/caddy.nix +++ b/modules/nixos/features/caddy.nix @@ -9,6 +9,7 @@ globalConfig = '' auto_https disable_redirects ''; + openFirewall = true; }; security.acme = { diff --git a/modules/nixos/features/copyparty.nix b/modules/nixos/features/copyparty.nix index 73006f6..ac21d2c 100644 --- a/modules/nixos/features/copyparty.nix +++ b/modules/nixos/features/copyparty.nix @@ -25,12 +25,12 @@ in rproxy = 1; }; - accounts.will.passwordFile = config.age.secrets.copyparty-will.path; + accounts.Impatient7119.passwordFile = config.age.secrets.copyparty.path; volumes."/" = { path = "/srv/copyparty"; access = { - A = [ "will" ]; + A = [ "Impatient7119" ]; }; }; }; @@ -44,8 +44,8 @@ in }; # secrets - age.secrets."copyparty-will" = { - file = ../../../secrets/copyparty-will.age; + age.secrets."copyparty" = { + file = ../../../secrets/copyparty.age; owner = "copyparty"; }; diff --git a/modules/nixos/features/ntfy-sh.nix b/modules/nixos/features/ntfy-sh.nix index e53a792..b82a4f0 100644 --- a/modules/nixos/features/ntfy-sh.nix +++ b/modules/nixos/features/ntfy-sh.nix @@ -10,9 +10,21 @@ in base-url = "https://ntfy-sh.fi33.buzz"; listen-http = ":${toString port}"; behind-proxy = true; + auth-default-access = "deny-all"; + auth-users = [ + "Debit3885:$2a$12$ZeFimzdifNFSmf0W2oi.vuZfsqae75md9nhC/Q2BcKMyvDO8T.uEK:admin" + "borgmatic:$2a$12$ZeFimzdifNFSmf0W2oi.vuZfsqae75md9nhC/Q2BcKMyvDO8T.uEK:user" + ]; + auth-access = [ "borgmatic:backups:wo" ]; }; }; + borgmatic.settings = { + source_directories = [ + "/var/lib/ntfy-sh/user.db" + ]; + }; + caddy.virtualHosts."ntfy-sh.fi33.buzz".extraConfig = '' reverse_proxy localhost:${toString port} tls ${certloc}/cert.pem ${certloc}/key.pem { diff --git a/secrets/borgmatic-ntfy.age b/secrets/borgmatic-ntfy.age new file mode 100644 index 0000000..86e7ba8 --- /dev/null +++ b/secrets/borgmatic-ntfy.age @@ -0,0 +1,9 @@ +age-encryption.org/v1 +-> ssh-ed25519 qLT+DQ GTuLiTsgOVunKC+DyalVPV3gKm3WiKoSIQXg/0ElJF8 +UiOLJdTn4Q5oTkqAtZ6K0uxW+EsrpfA156uC1ncrIY0 +-> ssh-ed25519 7+xRyQ k2ta2Gl7zCvHiv4DwzgRK5REDYayIoTfC32BF5yHxgg +n7sqfJ6fx/3VnQCD+H4n92ekGdoFCdk/SeXdSU8FZHc +-> ssh-ed25519 LtK9yQ BQ9U3//Lzx7dX+iDyP2lqx6K860kFTu/iB5uMAskKhA +xiV+QxL8ffx9n9gIUr5wwQ5zGvZlFsf2DclayQh8SJI +--- k06SInBOn82DqWfIf4t62pjAZ1R0uWAyQTi5ELDD/6U +f_$T56"TH;4}HRrifMU}Yh}5Cene_&aGrLufklypcR)#HNN}!^ zzk!jfabTq*S5F6kLAkrnwN23dhzx^@c1#TmM(DMqHI zhL#FGCEk{mfeP6rzMc_gQI;|V~dCNS_ w$?9p@t1ix(of2Q+^vixKmwD&JnSX44@hs7B4gPtw|B!yi3ZbKRkAHsx0Ox?F2mk;8 delta 465 zcmeyw{DyggYQ0a1w`FCZLYY%(c|odQNK#35c~p6RV1ZM5M3i@#p+$soluNl`XtrOX zyJ>1cadC!jYKoDmsiCDpp-+gmOQ3>Nm~T#?eu=MhR=rt3a7bENqN#JCo2h$FaZ;$I zwwHdGziX<0az?tBp`$04XQF`X?L6w0DE=ECqCdFYTmJt=XepT*y8Ad@a70&tEMcPL7!9k{$1?8c^ z7M4YYMH$Z7T;YKxA#OR9MqYs)W(C2i9u~$CL8W0?Zq6S0StZ)Wq0as;rAhkvp{7Qm zT)Mit3K`+SZmEf>xy8wTky*i>r3TrhVV02=mI1Co1{S_KA!*u`j;U3pMPa$+TmfML zGJcoYa|#ZyaRhI%cX$2f_4-Y8 Date: Mon, 23 Feb 2026 16:21:07 +0000 Subject: [PATCH 14/47] flake.lock: Update MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Flake lock file updates: • Updated input 'copyparty': 'github:9001/copyparty/d067d2a' (2026-02-14) → 'github:9001/copyparty/ab8bd01' (2026-02-23) • Updated input 'home-manager': 'github:nix-community/home-manager/ae8003d' (2026-02-15) → 'github:nix-community/home-manager/9a4b494' (2026-02-23) • Updated input 'nix-citizen': 'github:LovingMelody/nix-citizen/2affbcd' (2026-02-13) → 'github:LovingMelody/nix-citizen/bebdc04' (2026-02-20) • Updated input 'nix-citizen/nixpkgs': 'github:NixOS/nixpkgs/ec7c70d' (2026-02-11) → 'github:NixOS/nixpkgs/0182a36' (2026-02-17) • Updated input 'nix-gaming': 'github:fufexan/nix-gaming/0c4bf3a' (2026-02-15) → 'github:fufexan/nix-gaming/e70ef85' (2026-02-23) • Updated input 'nix-gaming/nixpkgs': 'github:NixOS/nixpkgs/2343bbb' (2026-02-11) → 'github:NixOS/nixpkgs/d1c15b7' (2026-02-16) • Updated input 'nixpkgs': 'github:nixos/nixpkgs/a82ccc3' (2026-02-13) → 'github:nixos/nixpkgs/0182a36' (2026-02-17) • Updated input 'nur': 'github:nix-community/NUR/76daea0' (2026-02-16) → 'github:nix-community/NUR/c5fa7a8' (2026-02-23) --- flake.lock | 48 ++++++++++++++++++++++++------------------------ 1 file changed, 24 insertions(+), 24 deletions(-) diff --git a/flake.lock b/flake.lock index f754091..42e5940 100644 --- a/flake.lock +++ b/flake.lock @@ -29,11 +29,11 @@ "nixpkgs": "nixpkgs" }, "locked": { - "lastModified": 1771111169, - "narHash": "sha256-WNHK8xPTw4uHn/Y3ClSCPJj1rfXlsHElUDDPZi2LH6Q=", + "lastModified": 1771834427, + "narHash": "sha256-B1j0ahVuxyZtpbFfy34gk2DjacimPIuzyzCPvDhvxI4=", "owner": "9001", "repo": "copyparty", - "rev": "d067d2a6384e159d4d950a4a596a1f91af14f0c5", + "rev": "ab8bd0178b26a0b6c6406f7bae835d13b16ef188", "type": "github" }, "original": { @@ -188,11 +188,11 @@ ] }, "locked": { - "lastModified": 1771188132, - "narHash": "sha256-qLXxN/tPrZtnekaLBQuVtxQfvqqs5cT5WbyH4zZaTGI=", + "lastModified": 1771851181, + "narHash": "sha256-gFgE6mGUftwseV3DUENMb0k0EiHd739lZexPo5O/sdQ=", "owner": "nix-community", "repo": "home-manager", - "rev": "ae8003d8b61d0d373e7ca3da1a48f9c870d15df9", + "rev": "9a4b494b1aa1b93d8edf167f46dc8e0c0011280c", "type": "github" }, "original": { @@ -213,11 +213,11 @@ "treefmt-nix": "treefmt-nix" }, "locked": { - "lastModified": 1771024909, - "narHash": "sha256-nCTsyqZqKJDSjzxE3GcNAp685SrU5Qa01+b1d3fHvho=", + "lastModified": 1771619527, + "narHash": "sha256-y/jb+wpBP0FGwoa8Jin7NAE0bGP2N6c8GlffAz4AgsA=", "owner": "LovingMelody", "repo": "nix-citizen", - "rev": "2affbcd1cbc73d68b38f1b0de1184f55e61f0ad0", + "rev": "bebdc0400deffc548360bf900aa26e41af7ee4be", "type": "github" }, "original": { @@ -232,11 +232,11 @@ "nixpkgs": "nixpkgs_3" }, "locked": { - "lastModified": 1771123156, - "narHash": "sha256-Px1IFFTw3zdP8RNram2g41EvUTjIZRDLCgZyXgpBty0=", + "lastModified": 1771830876, + "narHash": "sha256-18G4VyxjjQ/fM7yjBIbHQEdJlodUd/J5KlG5RuFqRG0=", "owner": "fufexan", "repo": "nix-gaming", - "rev": "0c4bf3ac4eaf5b693e5d7ae75f3caba8fcf15d8f", + "rev": "e70ef8581abe41fc62428cd4a5da47405233b19d", "type": "github" }, "original": { @@ -298,11 +298,11 @@ }, "nixpkgs_2": { "locked": { - "lastModified": 1770841267, - "narHash": "sha256-9xejG0KoqsoKEGp2kVbXRlEYtFFcDTHjidiuX8hGO44=", + "lastModified": 1771369470, + "narHash": "sha256-0NBlEBKkN3lufyvFegY4TYv5mCNHbi5OmBDrzihbBMQ=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "ec7c70d12ce2fc37cb92aff673dcdca89d187bae", + "rev": "0182a361324364ae3f436a63005877674cf45efb", "type": "github" }, "original": { @@ -314,11 +314,11 @@ }, "nixpkgs_3": { "locked": { - "lastModified": 1770843696, - "narHash": "sha256-LovWTGDwXhkfCOmbgLVA10bvsi/P8eDDpRudgk68HA8=", + "lastModified": 1771207753, + "narHash": "sha256-b9uG8yN50DRQ6A7JdZBfzq718ryYrlmGgqkRm9OOwCE=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "2343bbb58f99267223bc2aac4fc9ea301a155a16", + "rev": "d1c15b7d5806069da59e819999d70e1cec0760bf", "type": "github" }, "original": { @@ -330,11 +330,11 @@ }, "nixpkgs_4": { "locked": { - "lastModified": 1771008912, - "narHash": "sha256-gf2AmWVTs8lEq7z/3ZAsgnZDhWIckkb+ZnAo5RzSxJg=", + "lastModified": 1771369470, + "narHash": "sha256-0NBlEBKkN3lufyvFegY4TYv5mCNHbi5OmBDrzihbBMQ=", "owner": "nixos", "repo": "nixpkgs", - "rev": "a82ccc39b39b621151d6732718e3e250109076fa", + "rev": "0182a361324364ae3f436a63005877674cf45efb", "type": "github" }, "original": { @@ -374,11 +374,11 @@ ] }, "locked": { - "lastModified": 1771256997, - "narHash": "sha256-zSKbic6sOY5U+nhyoyx7/EBsHEdBOfwdA3lf81Bvk3k=", + "lastModified": 1771863000, + "narHash": "sha256-kQqPXgZkT7AGuVKEBh99IoawtxnyLg38HJFYNwWQxNk=", "owner": "nix-community", "repo": "NUR", - "rev": "76daea059507c8058d4518d8d95775f4a5bc954f", + "rev": "c5fa7a8e1f27f220045e3c7d9a1188a9254ac804", "type": "github" }, "original": { From e3c18152d5ba0f60c5a2c52db9e4d4486977ee6b Mon Sep 17 00:00:00 2001 From: wi11-holdsworth <83637728+wi11-holdsworth@users.noreply.github.com> Date: Tue, 24 Feb 2026 22:25:00 +1100 Subject: [PATCH 15/47] fix(homepage-dashboard): for some bizzare reason, the "bazarr" key wasn't working but I changed the name to "subtitles" and it works so yay --- modules/nixos/features/homepage-dashboard.nix | 4 ++-- secrets/bazarr.age | 16 ++++++++-------- secrets/secrets.nix | 2 +- secrets/subtitles.age | Bin 0 -> 465 bytes 4 files changed, 11 insertions(+), 11 deletions(-) create mode 100644 secrets/subtitles.age diff --git a/modules/nixos/features/homepage-dashboard.nix b/modules/nixos/features/homepage-dashboard.nix index 2933366..abd4624 100644 --- a/modules/nixos/features/homepage-dashboard.nix +++ b/modules/nixos/features/homepage-dashboard.nix @@ -23,7 +23,6 @@ let secrets = [ # keep-sorted start - "bazarr" "immich" "jellyfin" "kavita-api" @@ -35,6 +34,7 @@ let "radarr" "readarr" "sonarr" + "subtitles" # keep-sorted end ]; certloc = "/var/lib/acme/fi33.buzz"; @@ -108,7 +108,7 @@ in widget = { type = "bazarr"; url = "https://bazarr.fi33.buzz/"; - key = "@bazarr@"; + key = "@subtitles@"; }; }; } diff --git a/secrets/bazarr.age b/secrets/bazarr.age index 82d61ca..108c2a4 100644 --- a/secrets/bazarr.age +++ b/secrets/bazarr.age @@ -1,9 +1,9 @@ age-encryption.org/v1 --> ssh-ed25519 qLT+DQ pNb65h8kPUdFi7vgKoENqFf9NuQAfegSAM+SVxoTdGQ -7pDfhxs55Q4HQetasY6tZX76aOleLTCTi3xEdCqPdFo --> ssh-ed25519 7+xRyQ SiBuQH6fIUFidqFUIFfE9i0zJhuMAWYmDCeszOJLZlE -ASEBjHaAVrH6z/43Rfnh2P0REg7f0b53fqbLHD44P8g --> ssh-ed25519 LtK9yQ F6FnS/nRerbt/tMCl48CMjyKwhgCI8ti40klovGXdGU -ksVfKN3xowiBhwzyS9DLdmVX1QLCo8hvNiNux0MkiXU ---- rMrNsQ0G/k0MAwDOBd9IYDb2Lc8N/RaGXIGKtm9FL1c -q 9o-dtB7v*i:.G/t),+/vCD}SX(} *4[~l \ No newline at end of file +-> ssh-ed25519 qLT+DQ sHlKSMDLuGOLY2qwoFCS2ZiC/903ChAP0wp4wJYksi8 +jIzt2BvZy53dMdUSYBEa2QsWQ7yluk9ltdk4wrTkIbo +-> ssh-ed25519 7+xRyQ /JHmkqPhx/nJFhOxWu5nrX89NCBI/Bhyih81bIv2OR8 +VJPt3EFgYWc6bYBSNNzLFnWBNVx7RYJaG/hNF2EswQ4 +-> ssh-ed25519 LtK9yQ znUR+X5uu9wdKPdUBEOhs295e/zLAD8E49vZ0QEaL10 +ADBASujra+DSzavY/m/gU3xgAzaSqlTh2txpzyyJIJQ +--- j21Ms0NWBwHJV1NPbIp19lSgCMkCHSUX3UwWjg43OLk +[,WM?&>ʄ 1P ī"oKޓjhiҪ&UMPr& \ No newline at end of file diff --git a/secrets/secrets.nix b/secrets/secrets.nix index b3b9380..9b08c62 100644 --- a/secrets/secrets.nix +++ b/secrets/secrets.nix @@ -15,7 +15,6 @@ let in { # keep-sorted start - "bazarr.age".publicKeys = users; "borgmatic-ntfy.age".publicKeys = users; "borgmatic-pg.age".publicKeys = users; "borgmatic.age".publicKeys = users; @@ -40,6 +39,7 @@ in "radicale.age".publicKeys = users; "readarr.age".publicKeys = users; "sonarr.age".publicKeys = users; + "subtitles.age".publicKeys = users; "upbank2firefly.age".publicKeys = users; "vaultwarden-admin.age".publicKeys = users; # keep-sorted end diff --git a/secrets/subtitles.age b/secrets/subtitles.age new file mode 100644 index 0000000000000000000000000000000000000000..11a88e57574906ef962fca7bf9fa1efd39203c10 GIT binary patch literal 465 zcmYdHPt{G$OD?J`D9Oyv)5|YP*Do{V(zR14F3!+RO))YxHMCSH^a;^+2~; z)GN&|u&Tr?KQ}waE8D~=(Y?IbEGeVNF|#}{Bb}?tr>G<--_C`pO^h#$uNok0b?OYfTObgW!@*w85S98M?ovKA g;lkWQH}(W%#=Dq(*m&lVaHH=#*6*jif~WNW0JM#s6aWAK literal 0 HcmV?d00001 From b1369d9233626c6891b86bb4505dd2f8aa85f4cf Mon Sep 17 00:00:00 2001 From: wi11-holdsworth Date: Tue, 24 Feb 2026 22:48:30 +1100 Subject: [PATCH 16/47] feat(git): add signing key to secrets store and sign all commits by default --- modules/home-manager/features/git.nix | 27 ++++++++++++++++++-------- secrets/git_signing_key.age | Bin 0 -> 831 bytes secrets/git_signing_key.pub.age | 10 ++++++++++ secrets/secrets.nix | 2 ++ 4 files changed, 31 insertions(+), 8 deletions(-) create mode 100644 secrets/git_signing_key.age create mode 100644 secrets/git_signing_key.pub.age diff --git a/modules/home-manager/features/git.nix b/modules/home-manager/features/git.nix index 8bffb72..7be9e6c 100644 --- a/modules/home-manager/features/git.nix +++ b/modules/home-manager/features/git.nix @@ -1,15 +1,12 @@ +{ + userName, + ... +}: { programs.git = { enable = true; settings = { - init.defaultBranch = "main"; - core.editor = "nvim"; - push.autoSetupRemote = true; - pull.rebase = true; - user = { - name = "wi11-holdsworth"; - email = "83637728+wi11-holdsworth@users.noreply.github.com"; - }; + # keep-sorted start block=yes aliases = { # keep-sorted start a = "add"; @@ -30,6 +27,20 @@ s = "status -s"; # keep-sorted end }; + core.editor = "nvim"; + init.defaultBranch = "main"; + pull.rebase = true; + push.autoSetupRemote = true; + user = { + name = "Will Holdsworth"; + email = "me@fi33.buzz"; + }; + # keep-sorted end + }; + signing = { + key = "/home/${userName}/.ssh/git_signature.pub"; + format = "ssh"; + signByDefault = true; }; }; } diff --git a/secrets/git_signing_key.age b/secrets/git_signing_key.age new file mode 100644 index 0000000000000000000000000000000000000000..d3a4680ae7605e2344c388ab6db32944a419f9fc GIT binary patch literal 831 zcmYdHPt{G$OD?J`D9Oyv)5|YP*Do{V(zR14F3!+RO))YxHMCSH^a;^+2~ReH8?-0IK3*syR!&E;iq|hL(DACBk(-++~pAv7&%0PugGpC?ZXESFX3vY8*L$64SlFG{L zki<~S%m^Q!$Q14H6qizq{QN|ph=1s12;oa-A?|EKlo2RKGRwmr1dg)eg+@;vR-{kzd zzn$Ll_waGfWt&)kJG?gc?i9Pjc;t@l<$d;Z^{2=tDu%e3ESs-CYr3Jou8w*``mgOP zLIrbzZhhG{V|ENK6=KTxqsrg$oEI-JuuzS|Y|LfnD&o{dE zmP_xOSrWsN1OH~`EO$Ekky~ey1RWZHuaV!u+6%~ zby5AgM6&84|H6IgYkIg|#w(=0JzR4me!gyD=Z9*E`(NzTCjKa1(()u~>&EJy4K=6d zI+-rGtH7qb`y8`HAZLHE^Y5u~azWivlIa&+R)^lIwu-j2o3&ppA}sV|cXvYhMb4$R ze^&%-x7w)9vGw$X$=^6#`hOp+eslT!tgzqejUFQ2mJG9WrwYH)(plsY`(VnpWG{iQ z9Fx1t^F(4V4sdlmkG5=G$>lC-#4=sq?C<>h0D+cD Ab^rhX literal 0 HcmV?d00001 diff --git a/secrets/git_signing_key.pub.age b/secrets/git_signing_key.pub.age new file mode 100644 index 0000000..f0b53bc --- /dev/null +++ b/secrets/git_signing_key.pub.age @@ -0,0 +1,10 @@ +age-encryption.org/v1 +-> ssh-ed25519 qLT+DQ NMzN1Cll+cH5GgEQvCRpb8c1m7CDHWBtUZ5QNMluKkg +H77YBVoCAZerRyoG90h9W6PKZbpjNBl2mfsW3Eco27w +-> ssh-ed25519 7+xRyQ 67NFmrcLe9R5ni0HnvIiHcN0tlRVXpAiaVOQfIpqWzI +H7jbIgVXVl+lENksb4KUfASeIKPBI/FtHhhlQzhXwik +-> ssh-ed25519 LtK9yQ jvrWRlZF/H20QARL4lWWX0cDDoIK0Et5ZMxdsPJPXn0 +g+ZaDYycq65tBEBFuDpSl1BKuCTmxCJuYqG8kSCtL9U +--- jZ2xp/oW3CgXPc8jriK53zTODB9lhDNZr8YfSYLAmio +AKw;2R +֨bS'7//kXHӖW†

Date: Tue, 24 Feb 2026 23:38:12 +1100 Subject: [PATCH 17/47] refactor(agenix): remove unused keys --- secrets/secrets.nix | 5 ----- 1 file changed, 5 deletions(-) diff --git a/secrets/secrets.nix b/secrets/secrets.nix index 1004c24..c5f907c 100644 --- a/secrets/secrets.nix +++ b/secrets/secrets.nix @@ -19,13 +19,10 @@ in "borgmatic-pg.age".publicKeys = users; "borgmatic.age".publicKeys = users; "copyparty.age".publicKeys = users; - "firefly-db.age".publicKeys = users; - "firefly.age".publicKeys = users; "git_signing_key.age".publicKeys = users; "git_signing_key.pub.age".publicKeys = users; "immich.age".publicKeys = users; "jellyfin.age".publicKeys = users; - "karakeep.age".publicKeys = users; "kavita-api.age".publicKeys = users; "kavita.age".publicKeys = users; "lidarr.age".publicKeys = users; @@ -35,14 +32,12 @@ in "porkbun-api.age".publicKeys = users; "protonmail-cert.age".publicKeys = users; "protonmail-desktop-password.age".publicKeys = users; - "protonmail-laptop-password.age".publicKeys = users; "prowlarr.age".publicKeys = users; "radarr.age".publicKeys = users; "radicale.age".publicKeys = users; "readarr.age".publicKeys = users; "sonarr.age".publicKeys = users; "subtitles.age".publicKeys = users; - "upbank2firefly.age".publicKeys = users; "vaultwarden-admin.age".publicKeys = users; # keep-sorted end } From cab4e8fd57682139819a66d4597bcce769aa8060 Mon Sep 17 00:00:00 2001 From: Will Holdsworth Date: Sun, 1 Mar 2026 13:16:31 +1100 Subject: [PATCH 18/47] fix(borgmatic): revert #2197490b --- modules/nixos/features/bazarr.nix | 7 ------- modules/nixos/features/jellyfin.nix | 7 ------- modules/nixos/features/karakeep.nix | 7 ------- modules/nixos/features/kavita.nix | 7 ------- modules/nixos/features/lidarr.nix | 7 ------- modules/nixos/features/prowlarr.nix | 7 ------- modules/nixos/features/qui.nix | 7 ------- modules/nixos/features/radarr.nix | 7 ------- modules/nixos/features/readarr.nix | 7 ------- modules/nixos/features/sonarr.nix | 7 ------- modules/nixos/features/vaultwarden.nix | 7 ------- 11 files changed, 77 deletions(-) diff --git a/modules/nixos/features/bazarr.nix b/modules/nixos/features/bazarr.nix index b1cd4a9..541235c 100644 --- a/modules/nixos/features/bazarr.nix +++ b/modules/nixos/features/bazarr.nix @@ -11,13 +11,6 @@ in listenPort = port; }; - borgmatic.settings.sqlite_databases = [ - { - name = "bazarr"; - path = "/srv/bazarr/db/bazarr.db"; - } - ]; - caddy.virtualHosts."bazarr.fi33.buzz".extraConfig = '' reverse_proxy localhost:${toString port} tls ${certloc}/cert.pem ${certloc}/key.pem { diff --git a/modules/nixos/features/jellyfin.nix b/modules/nixos/features/jellyfin.nix index b6cbcc4..9fab896 100644 --- a/modules/nixos/features/jellyfin.nix +++ b/modules/nixos/features/jellyfin.nix @@ -10,13 +10,6 @@ in group = "srv"; }; - borgmatic.settings.sqlite_databases = [ - { - name = "jellyfin"; - path = "/srv/jellyfin/data/jellyfin.db"; - } - ]; - caddy.virtualHosts."jellyfin.fi33.buzz".extraConfig = '' reverse_proxy localhost:${toString port} tls ${certloc}/cert.pem ${certloc}/key.pem { diff --git a/modules/nixos/features/karakeep.nix b/modules/nixos/features/karakeep.nix index 0eb9bba..cebc5f8 100644 --- a/modules/nixos/features/karakeep.nix +++ b/modules/nixos/features/karakeep.nix @@ -12,13 +12,6 @@ in }; }; - borgmatic.settings.sqlite_databases = [ - { - name = "karakeep"; - path = "/var/lib/karakeep/db.db"; - } - ]; - caddy.virtualHosts."karakeep.fi33.buzz".extraConfig = '' reverse_proxy localhost:${toString port} tls ${certloc}/cert.pem ${certloc}/key.pem { diff --git a/modules/nixos/features/kavita.nix b/modules/nixos/features/kavita.nix index d1fe035..bbb2322 100644 --- a/modules/nixos/features/kavita.nix +++ b/modules/nixos/features/kavita.nix @@ -15,13 +15,6 @@ in tokenKeyFile = config.age.secrets.kavita.path; }; - borgmatic.settings.sqlite_databases = [ - { - name = "kavita"; - path = "/srv/kavita/config/kavita.db"; - } - ]; - caddy.virtualHosts."kavita.fi33.buzz".extraConfig = '' reverse_proxy localhost:${toString port} tls ${certloc}/cert.pem ${certloc}/key.pem { diff --git a/modules/nixos/features/lidarr.nix b/modules/nixos/features/lidarr.nix index 5c297d7..78aa609 100644 --- a/modules/nixos/features/lidarr.nix +++ b/modules/nixos/features/lidarr.nix @@ -13,13 +13,6 @@ in group = "srv"; }; - borgmatic.settings.sqlite_databases = [ - { - name = "lidarr"; - path = "/srv/lidarr/lidarr.db"; - } - ]; - caddy.virtualHosts."lidarr.fi33.buzz".extraConfig = '' reverse_proxy localhost:${toString port} tls ${certloc}/cert.pem ${certloc}/key.pem { diff --git a/modules/nixos/features/prowlarr.nix b/modules/nixos/features/prowlarr.nix index d5f24e7..23e090f 100644 --- a/modules/nixos/features/prowlarr.nix +++ b/modules/nixos/features/prowlarr.nix @@ -12,13 +12,6 @@ in }; }; - borgmatic.settings.sqlite_databases = [ - { - name = "prowlarr"; - path = "/srv/prowlarr/prowlarr.db"; - } - ]; - caddy.virtualHosts."prowlarr.fi33.buzz".extraConfig = '' reverse_proxy localhost:${toString port} tls ${certloc}/cert.pem ${certloc}/key.pem { diff --git a/modules/nixos/features/qui.nix b/modules/nixos/features/qui.nix index bcb5c96..8c34edf 100644 --- a/modules/nixos/features/qui.nix +++ b/modules/nixos/features/qui.nix @@ -23,13 +23,6 @@ in }; }; - services.borgmatic.settings.sqlite_databases = [ - { - name = "qui"; - path = "/srv/qui/qui.db"; - } - ]; - services.caddy.virtualHosts."qui.fi33.buzz".extraConfig = '' reverse_proxy localhost:${toString port} tls ${certloc}/cert.pem ${certloc}/key.pem { diff --git a/modules/nixos/features/radarr.nix b/modules/nixos/features/radarr.nix index 2c5c019..30063eb 100644 --- a/modules/nixos/features/radarr.nix +++ b/modules/nixos/features/radarr.nix @@ -13,13 +13,6 @@ in group = "srv"; }; - borgmatic.settings.sqlite_databases = [ - { - name = "radarr"; - path = "/srv/radarr/radarr.db"; - } - ]; - caddy.virtualHosts."radarr.fi33.buzz".extraConfig = '' reverse_proxy localhost:${toString port} tls ${certloc}/cert.pem ${certloc}/key.pem { diff --git a/modules/nixos/features/readarr.nix b/modules/nixos/features/readarr.nix index f616480..42a884b 100644 --- a/modules/nixos/features/readarr.nix +++ b/modules/nixos/features/readarr.nix @@ -13,13 +13,6 @@ in group = "srv"; }; - borgmatic.settings.sqlite_databases = [ - { - name = "readarr"; - path = "/srv/readarr/readarr.db"; - } - ]; - caddy.virtualHosts."readarr.fi33.buzz".extraConfig = '' reverse_proxy localhost:${toString port} tls ${certloc}/cert.pem ${certloc}/key.pem { diff --git a/modules/nixos/features/sonarr.nix b/modules/nixos/features/sonarr.nix index 4be089e..691b4b8 100644 --- a/modules/nixos/features/sonarr.nix +++ b/modules/nixos/features/sonarr.nix @@ -13,13 +13,6 @@ in group = "srv"; }; - borgmatic.settings.sqlite_databases = [ - { - name = "sonarr"; - path = "/srv/sonarr/sonarr.db"; - } - ]; - caddy.virtualHosts."sonarr.fi33.buzz".extraConfig = '' reverse_proxy localhost:${toString port} tls ${certloc}/cert.pem ${certloc}/key.pem { diff --git a/modules/nixos/features/vaultwarden.nix b/modules/nixos/features/vaultwarden.nix index 76d8acc..be8cb7a 100644 --- a/modules/nixos/features/vaultwarden.nix +++ b/modules/nixos/features/vaultwarden.nix @@ -23,13 +23,6 @@ in }; }; - borgmatic.settings.sqlite_databases = [ - { - name = "vaultwarden"; - path = "/srv/vaultwarden/db.sqlite3"; - } - ]; - caddy.virtualHosts."vaultwarden.fi33.buzz".extraConfig = '' reverse_proxy localhost:${toString port} tls ${certloc}/cert.pem ${certloc}/key.pem { From afa8f669c9fc9e02d9245ab880ef7de4daa77ffc Mon Sep 17 00:00:00 2001 From: Will Holdsworth Date: Sun, 1 Mar 2026 13:40:40 +1100 Subject: [PATCH 19/47] fix(prowlarr): data dir doesn't seem to be supported properly, just use default data dir at /var/lib --- modules/nixos/features/prowlarr.nix | 3 ++- secrets/prowlarr.age | 16 ++++++++-------- 2 files changed, 10 insertions(+), 9 deletions(-) diff --git a/modules/nixos/features/prowlarr.nix b/modules/nixos/features/prowlarr.nix index 23e090f..a7f409f 100644 --- a/modules/nixos/features/prowlarr.nix +++ b/modules/nixos/features/prowlarr.nix @@ -6,12 +6,13 @@ in services = { prowlarr = { enable = true; - dataDir = "/srv/prowlarr"; settings.server = { inherit port; }; }; + borgmatic.settings.source_directories = [ "/var/lib/prowlarr" ]; + caddy.virtualHosts."prowlarr.fi33.buzz".extraConfig = '' reverse_proxy localhost:${toString port} tls ${certloc}/cert.pem ${certloc}/key.pem { diff --git a/secrets/prowlarr.age b/secrets/prowlarr.age index 8883300..08436c5 100644 --- a/secrets/prowlarr.age +++ b/secrets/prowlarr.age @@ -1,9 +1,9 @@ age-encryption.org/v1 --> ssh-ed25519 qLT+DQ EgHCxhqEyRGiBNRBw8Cs2NmM4nihbZSEw4C3JJ2muRE -Pqnh8JpDHEvsgkJTwJzrkx/A0oBg2n7TumVCgHOceD8 --> ssh-ed25519 7+xRyQ WLCkfRiBsqZohjc+z4rs4sHFMAtsRvqiocsnUlZkAVg -ebJft8vHhi4rd9T0BOl388SKun+3vF3P6/u7U4vdy5c --> ssh-ed25519 LtK9yQ 8suX3vEyfqVcbNy4ZQxPRvaJg+4TJTR0cSlAgV04rzc -i8cmfhsETd4Y7epbyan5ION7W2g5QazyJA3AcGlXKKI ---- 7jsZ4aF4WyshNUtjP83yf2yHaR1UXfWEdbHhwmfyGhM -&zP 'س],qTx@l}Io.qGT|!= \ No newline at end of file +-> ssh-ed25519 qLT+DQ k6AiMFgWygHRf2yPApcnQYDPaJx/Dp6BTq3+BdyBiyM +64MyfaTpMcAl8o9zkWXCoZQ5uy+7izd30A90LLiALTY +-> ssh-ed25519 7+xRyQ YcPcsux5lCSDbV8hSCvhkI+1qnAmXcpd5FDmT7bMXk0 +bbkjozzt/bL7j7uJTtgkklI/qJ11zYgQsYmZhFwGV+c +-> ssh-ed25519 LtK9yQ Ol8eU/Pyb3gDCsIzE1zT8FNsTCGKZZc5zfX6lW/5+2w +Gj0ssfpyQcy0vfVXgNXxzFzHGpPBOyfkR7UeRYina4A +--- +iLccZwqDkqDg2atoNRSuhEf3v3fyU6oda4vOw+BuKc +&L: 9:"| dm9v1y"vOYnx=4D \ No newline at end of file From 143f1dafacacba93b81240b36d1a427b35860d22 Mon Sep 17 00:00:00 2001 From: Will Holdsworth Date: Mon, 2 Mar 2026 21:46:01 +1100 Subject: [PATCH 20/47] feat(send): install --- modules/nixos/bundles/server.nix | 1 + modules/nixos/features/send.nix | 28 ++++++++++++++++++++++++++++ 2 files changed, 29 insertions(+) create mode 100644 modules/nixos/features/send.nix diff --git a/modules/nixos/bundles/server.nix b/modules/nixos/bundles/server.nix index 2795aca..2d34890 100644 --- a/modules/nixos/bundles/server.nix +++ b/modules/nixos/bundles/server.nix @@ -23,6 +23,7 @@ "radarr" "radicale" "readarr" + "send" "sonarr" "vaultwarden" # keep-sorted end diff --git a/modules/nixos/features/send.nix b/modules/nixos/features/send.nix new file mode 100644 index 0000000..defb025 --- /dev/null +++ b/modules/nixos/features/send.nix @@ -0,0 +1,28 @@ +let + port = 5020; + certloc = "/var/lib/acme/fi33.buzz"; +in +{ + services = { + send = { + enable = true; + inherit port; + baseUrl = "https://send.fi33.buzz"; + environment = { + DEFAULT_EXPIRE_SECONDS = 360; + EXPIRE_TIMES_SECONDS = "360"; + DOWNLOAD_COUNTS = "1"; + MAX_DOWNLOADS = 1; + MAX_EXPIRE_SECONDS = 1024; + MAX_FILE_SIZE = 134217728; + }; + }; + + caddy.virtualHosts."send.fi33.buzz".extraConfig = '' + reverse_proxy localhost:${toString port} + tls ${certloc}/cert.pem ${certloc}/key.pem { + protocols tls1.3 + } + ''; + }; +} From 0c8fb875c3216aac68acd25098477ca775df9f5c Mon Sep 17 00:00:00 2001 From: Will Holdsworth Date: Mon, 2 Mar 2026 21:46:11 +1100 Subject: [PATCH 21/47] feat(homepage-dashboard): add send --- modules/nixos/features/homepage-dashboard.nix | 115 ++++++++++-------- 1 file changed, 67 insertions(+), 48 deletions(-) diff --git a/modules/nixos/features/homepage-dashboard.nix b/modules/nixos/features/homepage-dashboard.nix index abd4624..57c8a5d 100644 --- a/modules/nixos/features/homepage-dashboard.nix +++ b/modules/nixos/features/homepage-dashboard.nix @@ -46,6 +46,17 @@ in listenPort = port; allowedHosts = "homepage-dashboard.fi33.buzz"; services = [ + { + "Public Services" = [ + { + Send = { + description = " Simple, private file sharing"; + icon = "send.svg"; + href = "https://send.fi33.buzz/"; + }; + } + ]; + } { "Media Management" = [ { @@ -146,6 +157,52 @@ in } ]; } + { + "Private Services" = [ + { + "copyparty" = { + "description" = "Cloud file manager"; + "icon" = "sh-copyparty.svg"; + "href" = "https://copyparty.fi33.buzz/"; + }; + } + { + CouchDB = { + description = "Obsidian sync database"; + icon = "couchdb.svg"; + href = "https://couchdb.fi33.buzz/_utils/"; + }; + } + { + ntfy = { + description = "Notification service"; + icon = "ntfy.svg"; + href = "https://ntfy-sh.fi33.buzz/"; + }; + } + { + Radicale = { + description = "CalDAV/CardDAV service"; + icon = "radicale.svg"; + href = "https://radicale.fi33.buzz"; + }; + } + { + Syncthing = { + description = "Decentralised file synchronisation"; + icon = "syncthing.svg"; + href = "https://syncthing.fi33.buzz/"; + }; + } + { + Vaultwarden = { + description = "Password manager"; + icon = "vaultwarden.svg"; + href = "https://vaultwarden.fi33.buzz/"; + }; + } + ]; + } { "Media Streaming" = [ { @@ -223,52 +280,7 @@ in } ]; } - { - Services = [ - { - "copyparty" = { - "description" = "Cloud file manager"; - "icon" = "sh-copyparty.svg"; - "href" = "https://copyparty.fi33.buzz/"; - }; - } - { - CouchDB = { - description = "Obsidian sync database"; - icon = "couchdb.svg"; - href = "https://couchdb.fi33.buzz/_utils/"; - }; - } - { - ntfy = { - description = "Notification service"; - icon = "ntfy.svg"; - href = "https://ntfy-sh.fi33.buzz/"; - }; - } - { - Radicale = { - description = "CalDAV/CardDAV service"; - icon = "radicale.svg"; - href = "https://radicale.fi33.buzz"; - }; - } - { - Syncthing = { - description = "Decentralised file synchronisation"; - icon = "syncthing.svg"; - href = "https://syncthing.fi33.buzz/"; - }; - } - { - Vaultwarden = { - description = "Password manager"; - icon = "vaultwarden.svg"; - href = "https://vaultwarden.fi33.buzz/"; - }; - } - ]; - } + { Utilities = [ { @@ -288,14 +300,21 @@ in headerStyle = "clean"; layout = [ { - "Media Streaming" = { + "Public Services" = { style = "row"; columns = 3; useEqualHeights = true; }; } { - Services = { + "Private Services" = { + style = "row"; + columns = 3; + useEqualHeights = true; + }; + } + { + "Media Streaming" = { style = "row"; columns = 3; useEqualHeights = true; From 7f0f92dcf2525eddc99e55645e125ec491fc2734 Mon Sep 17 00:00:00 2001 From: Will Holdsworth Date: Mon, 2 Mar 2026 21:46:11 +1100 Subject: [PATCH 22/47] feat(homepage-dashboard): add send --- modules/nixos/features/homepage-dashboard.nix | 115 ++++++++++-------- 1 file changed, 67 insertions(+), 48 deletions(-) diff --git a/modules/nixos/features/homepage-dashboard.nix b/modules/nixos/features/homepage-dashboard.nix index abd4624..2ccc718 100644 --- a/modules/nixos/features/homepage-dashboard.nix +++ b/modules/nixos/features/homepage-dashboard.nix @@ -46,6 +46,17 @@ in listenPort = port; allowedHosts = "homepage-dashboard.fi33.buzz"; services = [ + { + "Public Services" = [ + { + Send = { + description = "Simple, private file sharing"; + icon = "send.svg"; + href = "https://send.fi33.buzz/"; + }; + } + ]; + } { "Media Management" = [ { @@ -146,6 +157,52 @@ in } ]; } + { + "Private Services" = [ + { + "copyparty" = { + "description" = "Cloud file manager"; + "icon" = "sh-copyparty.svg"; + "href" = "https://copyparty.fi33.buzz/"; + }; + } + { + CouchDB = { + description = "Obsidian sync database"; + icon = "couchdb.svg"; + href = "https://couchdb.fi33.buzz/_utils/"; + }; + } + { + ntfy = { + description = "Notification service"; + icon = "ntfy.svg"; + href = "https://ntfy-sh.fi33.buzz/"; + }; + } + { + Radicale = { + description = "CalDAV/CardDAV service"; + icon = "radicale.svg"; + href = "https://radicale.fi33.buzz"; + }; + } + { + Syncthing = { + description = "Decentralised file synchronisation"; + icon = "syncthing.svg"; + href = "https://syncthing.fi33.buzz/"; + }; + } + { + Vaultwarden = { + description = "Password manager"; + icon = "vaultwarden.svg"; + href = "https://vaultwarden.fi33.buzz/"; + }; + } + ]; + } { "Media Streaming" = [ { @@ -223,52 +280,7 @@ in } ]; } - { - Services = [ - { - "copyparty" = { - "description" = "Cloud file manager"; - "icon" = "sh-copyparty.svg"; - "href" = "https://copyparty.fi33.buzz/"; - }; - } - { - CouchDB = { - description = "Obsidian sync database"; - icon = "couchdb.svg"; - href = "https://couchdb.fi33.buzz/_utils/"; - }; - } - { - ntfy = { - description = "Notification service"; - icon = "ntfy.svg"; - href = "https://ntfy-sh.fi33.buzz/"; - }; - } - { - Radicale = { - description = "CalDAV/CardDAV service"; - icon = "radicale.svg"; - href = "https://radicale.fi33.buzz"; - }; - } - { - Syncthing = { - description = "Decentralised file synchronisation"; - icon = "syncthing.svg"; - href = "https://syncthing.fi33.buzz/"; - }; - } - { - Vaultwarden = { - description = "Password manager"; - icon = "vaultwarden.svg"; - href = "https://vaultwarden.fi33.buzz/"; - }; - } - ]; - } + { Utilities = [ { @@ -288,14 +300,21 @@ in headerStyle = "clean"; layout = [ { - "Media Streaming" = { + "Public Services" = { style = "row"; columns = 3; useEqualHeights = true; }; } { - Services = { + "Private Services" = { + style = "row"; + columns = 3; + useEqualHeights = true; + }; + } + { + "Media Streaming" = { style = "row"; columns = 3; useEqualHeights = true; From 2551f74ca474eb9247e78e0c0d1e78a9b40f709e Mon Sep 17 00:00:00 2001 From: Will Holdsworth Date: Mon, 2 Mar 2026 22:01:48 +1100 Subject: [PATCH 23/47] feat(cryptpad): install --- modules/nixos/bundles/server.nix | 1 + modules/nixos/features/cryptpad.nix | 49 +++++++++++++++++++++++++++++ 2 files changed, 50 insertions(+) create mode 100644 modules/nixos/features/cryptpad.nix diff --git a/modules/nixos/bundles/server.nix b/modules/nixos/bundles/server.nix index 2d34890..a4a7fbf 100644 --- a/modules/nixos/bundles/server.nix +++ b/modules/nixos/bundles/server.nix @@ -9,6 +9,7 @@ "caddy" "copyparty" "couchdb" + "cryptpad" "homepage-dashboard" "immich" "jellyfin" diff --git a/modules/nixos/features/cryptpad.nix b/modules/nixos/features/cryptpad.nix new file mode 100644 index 0000000..8c031ff --- /dev/null +++ b/modules/nixos/features/cryptpad.nix @@ -0,0 +1,49 @@ +let + httpPort = 5022; + websocketPort = 5024; + certloc = "/var/lib/acme/fi33.buzz"; +in +{ + services = { + cryptpad = { + enable = true; + settings = { + inherit httpPort; + inherit websocketPort; + httpUnsafeOrigin = "https://cryptpad.fi33.buzz"; + httpSafeOrigin = "https://cryptpad-ui.fi33.buzz"; + inactiveTime = 7; + archiveRetentionTime = 7; + accountRetentionTime = 7; + }; + }; + + caddy.virtualHosts."cryptpad.fi33.buzz, cryptpad-ui.fi33.buzz".extraConfig = '' + header Strict-Transport-Security "includeSubDomains; preload" + + handle /cryptpad_websocket* { + reverse_proxy localhost:${toString websocketPort} { + header_up Host {host} + header_up X-Real-IP {remote_host} + } + } + + handle { + reverse_proxy localhost:${toString httpPort} { + header_up Host {host} + header_up X-Real-IP {remote_host} + } + } + + @register { + host cryptpad.fi33.buzz + path /register* + } + respond @register 403 + + tls ${certloc}/cert.pem ${certloc}/key.pem { + protocols tls1.3 + } + ''; + }; +} From 036e7758351638006efa911be62fabcffc94af82 Mon Sep 17 00:00:00 2001 From: Will Holdsworth Date: Mon, 2 Mar 2026 22:02:02 +1100 Subject: [PATCH 24/47] feat(homepage-dashboard): add cryptpad --- modules/nixos/features/homepage-dashboard.nix | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/modules/nixos/features/homepage-dashboard.nix b/modules/nixos/features/homepage-dashboard.nix index 2ccc718..63f9cae 100644 --- a/modules/nixos/features/homepage-dashboard.nix +++ b/modules/nixos/features/homepage-dashboard.nix @@ -48,6 +48,13 @@ in services = [ { "Public Services" = [ + { + CryptPad = { + description = "Collaborative office suite"; + icon = "cryptpad.svg"; + href = "https://cryptpad.fi33.buzz/"; + }; + } { Send = { description = "Simple, private file sharing"; From de21c82acbe2790ee13a4c94c1445658e48f0c6f Mon Sep 17 00:00:00 2001 From: Will Holdsworth Date: Mon, 2 Mar 2026 22:51:46 +1100 Subject: [PATCH 25/47] style(homepage-dashboard): update service taglines by taking inspiration from repository taglines --- modules/nixos/features/homepage-dashboard.nix | 57 +++++++++---------- 1 file changed, 28 insertions(+), 29 deletions(-) diff --git a/modules/nixos/features/homepage-dashboard.nix b/modules/nixos/features/homepage-dashboard.nix index 63f9cae..e7de1ba 100644 --- a/modules/nixos/features/homepage-dashboard.nix +++ b/modules/nixos/features/homepage-dashboard.nix @@ -68,7 +68,7 @@ in "Media Management" = [ { Radarr = { - description = "Movie collection manager"; + description = "Movie organizer/manager"; icon = "radarr.svg"; href = "https://radarr.fi33.buzz/"; widget = { @@ -81,7 +81,7 @@ in } { Sonarr = { - description = "TV show collection manager"; + description = "Smart PVR"; icon = "sonarr.svg"; href = "https://sonarr.fi33.buzz/"; widget = { @@ -94,7 +94,7 @@ in } { Lidarr = { - description = "Music collection manager"; + description = "Like Sonarr but made for music"; icon = "lidarr.svg"; href = "https://lidarr.fi33.buzz/"; widget = { @@ -107,7 +107,7 @@ in } { Readarr = { - description = "Book collection manager"; + description = "Book Manager and Automation"; icon = "readarr.svg"; href = "https://readarr.fi33.buzz/"; widget = { @@ -120,7 +120,7 @@ in } { Bazarr = { - description = "Subtitle downloader and manager"; + description = "Subtitle manager and downloader"; icon = "bazarr.svg"; href = "https://bazarr.fi33.buzz/"; widget = { @@ -132,7 +132,7 @@ in } { Prowlarr = { - description = "Indexer management tool"; + description = "Indexer manager/proxy"; icon = "prowlarr.svg"; href = "https://prowlarr.fi33.buzz/"; widget = { @@ -144,7 +144,7 @@ in } { NZBget = { - description = "Usenet client"; + description = "Usenet Downloader"; icon = "nzbget.svg"; href = "https://nzbget.fi33.buzz/"; widget = { @@ -167,43 +167,43 @@ in { "Private Services" = [ { - "copyparty" = { - "description" = "Cloud file manager"; - "icon" = "sh-copyparty.svg"; - "href" = "https://copyparty.fi33.buzz/"; + copyparty = { + description = "Portable file server"; + icon = "sh-copyparty.svg"; + href = "https://copyparty.fi33.buzz/"; }; } { CouchDB = { - description = "Obsidian sync database"; + description = "Syncing database"; icon = "couchdb.svg"; href = "https://couchdb.fi33.buzz/_utils/"; }; } { ntfy = { - description = "Notification service"; + description = "Send push notifications using PUT/POST"; icon = "ntfy.svg"; href = "https://ntfy-sh.fi33.buzz/"; }; } { Radicale = { - description = "CalDAV/CardDAV service"; + description = "A simple CalDAV (calendar) and CardDAV (contact) server"; icon = "radicale.svg"; href = "https://radicale.fi33.buzz"; }; } { Syncthing = { - description = "Decentralised file synchronisation"; + description = "Open Source Continuous File Synchronization"; icon = "syncthing.svg"; href = "https://syncthing.fi33.buzz/"; }; } { Vaultwarden = { - description = "Password manager"; + description = "Unofficial Bitwarden compatible server"; icon = "vaultwarden.svg"; href = "https://vaultwarden.fi33.buzz/"; }; @@ -214,7 +214,7 @@ in "Media Streaming" = [ { Immich = { - description = "Photo backup"; + description = "Photo and video management solution"; icon = "immich.svg"; href = "https://immich.fi33.buzz/"; widget = { @@ -233,7 +233,7 @@ in } { Jellyfin = { - description = "Media streaming"; + description = "Media System"; icon = "jellyfin.svg"; href = "https://jellyfin.fi33.buzz/"; widget = { @@ -249,20 +249,20 @@ in }; } { - "Kavita" = { - "description" = "Book reader"; - "icon" = "kavita.svg"; - "href" = "https://kavita.fi33.buzz/"; - "widget" = { - "type" = "kavita"; - "url" = "https://kavita.fi33.buzz/"; - "key" = "@kavita-api@"; + Kavita = { + description = "Reading server"; + icon = "kavita.svg"; + href = "https://kavita.fi33.buzz/"; + widget = { + type = "kavita"; + url = "https://kavita.fi33.buzz/"; + key = "@kavita-api@"; }; }; } { Miniflux = { - description = "RSS aggregator"; + description = "Feed reader"; icon = "miniflux.svg"; href = "https://miniflux.fi33.buzz/"; widget = { @@ -274,7 +274,7 @@ in } { Paperless = { - description = "Digital filing cabinet"; + description = "Document management system"; icon = "paperless.svg"; href = "https://paperless.fi33.buzz/"; widget = { @@ -287,7 +287,6 @@ in } ]; } - { Utilities = [ { From d4118655df2c5440db9d5e405f16baf40eda02f2 Mon Sep 17 00:00:00 2001 From: Will Holdsworth Date: Mon, 2 Mar 2026 22:56:51 +1100 Subject: [PATCH 26/47] feat(libretranslate): install --- modules/nixos/bundles/server.nix | 1 + modules/nixos/features/libretranslate.nix | 20 ++++++++++++++++++++ 2 files changed, 21 insertions(+) create mode 100644 modules/nixos/features/libretranslate.nix diff --git a/modules/nixos/bundles/server.nix b/modules/nixos/bundles/server.nix index a4a7fbf..305b7ba 100644 --- a/modules/nixos/bundles/server.nix +++ b/modules/nixos/bundles/server.nix @@ -14,6 +14,7 @@ "immich" "jellyfin" "kavita" + "libretranslate" "lidarr" "miniflux" "ntfy-sh" diff --git a/modules/nixos/features/libretranslate.nix b/modules/nixos/features/libretranslate.nix new file mode 100644 index 0000000..5372e1e --- /dev/null +++ b/modules/nixos/features/libretranslate.nix @@ -0,0 +1,20 @@ +let + port = 5023; + certloc = "/var/lib/acme/fi33.buzz"; +in +{ + services = { + libretranslate = { + enable = true; + inherit port; + updateModels = true; + }; + + caddy.virtualHosts."translate.fi33.buzz".extraConfig = '' + reverse_proxy localhost:${toString port} + tls ${certloc}/cert.pem ${certloc}/key.pem { + protocols tls1.3 + } + ''; + }; +} From a9ac65f3f7003a6bf113c969e6779f7b42fbb45e Mon Sep 17 00:00:00 2001 From: Will Holdsworth Date: Mon, 2 Mar 2026 22:57:53 +1100 Subject: [PATCH 27/47] feat(homepage-dashboard): add libretranslate --- modules/nixos/features/homepage-dashboard.nix | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/modules/nixos/features/homepage-dashboard.nix b/modules/nixos/features/homepage-dashboard.nix index e7de1ba..bacf131 100644 --- a/modules/nixos/features/homepage-dashboard.nix +++ b/modules/nixos/features/homepage-dashboard.nix @@ -55,6 +55,13 @@ in href = "https://cryptpad.fi33.buzz/"; }; } + { + LibreTranslate = { + description = "Machine Translation API"; + icon = "libretranslate.svg"; + href = "https://translate.fi33.buzz/"; + }; + } { Send = { description = "Simple, private file sharing"; From 7a4898b4db59a50736011b56fa54712edf96656b Mon Sep 17 00:00:00 2001 From: Will Holdsworth Date: Mon, 2 Mar 2026 23:21:50 +1100 Subject: [PATCH 28/47] feat(homepage-dashboard): add status monitoring --- modules/nixos/features/homepage-dashboard.nix | 23 ++++++++++++++++++- 1 file changed, 22 insertions(+), 1 deletion(-) diff --git a/modules/nixos/features/homepage-dashboard.nix b/modules/nixos/features/homepage-dashboard.nix index bacf131..522d254 100644 --- a/modules/nixos/features/homepage-dashboard.nix +++ b/modules/nixos/features/homepage-dashboard.nix @@ -53,6 +53,7 @@ in description = "Collaborative office suite"; icon = "cryptpad.svg"; href = "https://cryptpad.fi33.buzz/"; + siteMonitor = "https://cryptpad.fi33.buzz/"; }; } { @@ -60,6 +61,7 @@ in description = "Machine Translation API"; icon = "libretranslate.svg"; href = "https://translate.fi33.buzz/"; + siteMonitor = "https://translate.fi33.buzz/"; }; } { @@ -67,6 +69,7 @@ in description = "Simple, private file sharing"; icon = "send.svg"; href = "https://send.fi33.buzz/"; + siteMonitor = "https://send.fi33.buzz/"; }; } ]; @@ -78,6 +81,7 @@ in description = "Movie organizer/manager"; icon = "radarr.svg"; href = "https://radarr.fi33.buzz/"; + siteMonitor = "https://radarr.fi33.buzz/"; widget = { type = "radarr"; url = "https://radarr.fi33.buzz/"; @@ -91,6 +95,7 @@ in description = "Smart PVR"; icon = "sonarr.svg"; href = "https://sonarr.fi33.buzz/"; + siteMonitor = "https://sonarr.fi33.buzz/"; widget = { type = "sonarr"; url = "https://sonarr.fi33.buzz/"; @@ -104,6 +109,7 @@ in description = "Like Sonarr but made for music"; icon = "lidarr.svg"; href = "https://lidarr.fi33.buzz/"; + siteMonitor = "https://lidarr.fi33.buzz/"; widget = { type = "lidarr"; url = "https://lidarr.fi33.buzz/"; @@ -117,6 +123,7 @@ in description = "Book Manager and Automation"; icon = "readarr.svg"; href = "https://readarr.fi33.buzz/"; + siteMonitor = "https://readarr.fi33.buzz/"; widget = { type = "readarr"; url = "https://readarr.fi33.buzz/"; @@ -130,6 +137,7 @@ in description = "Subtitle manager and downloader"; icon = "bazarr.svg"; href = "https://bazarr.fi33.buzz/"; + siteMonitor = "https://bazarr.fi33.buzz/"; widget = { type = "bazarr"; url = "https://bazarr.fi33.buzz/"; @@ -142,6 +150,7 @@ in description = "Indexer manager/proxy"; icon = "prowlarr.svg"; href = "https://prowlarr.fi33.buzz/"; + siteMonitor = "https://prowlarr.fi33.buzz/"; widget = { type = "prowlarr"; url = "https://prowlarr.fi33.buzz/"; @@ -154,6 +163,7 @@ in description = "Usenet Downloader"; icon = "nzbget.svg"; href = "https://nzbget.fi33.buzz/"; + siteMonitor = "https://nzbget.fi33.buzz/"; widget = { type = "nzbget"; url = "https://nzbget.fi33.buzz/"; @@ -167,6 +177,7 @@ in description = "BitTorrent client"; icon = "qbittorrent.svg"; href = "https://qbittorrent.fi33.buzz/"; + siteMonitor = "https://qbittorrent.fi33.buzz/"; }; } ]; @@ -178,6 +189,7 @@ in description = "Portable file server"; icon = "sh-copyparty.svg"; href = "https://copyparty.fi33.buzz/"; + siteMonitor = "https://copyparty.fi33.buzz/"; }; } { @@ -185,6 +197,7 @@ in description = "Syncing database"; icon = "couchdb.svg"; href = "https://couchdb.fi33.buzz/_utils/"; + siteMonitor = "https://couchdb.fi33.buzz/_utils/"; }; } { @@ -192,6 +205,7 @@ in description = "Send push notifications using PUT/POST"; icon = "ntfy.svg"; href = "https://ntfy-sh.fi33.buzz/"; + siteMonitor = "https://ntfy-sh.fi33.buzz/"; }; } { @@ -199,6 +213,7 @@ in description = "A simple CalDAV (calendar) and CardDAV (contact) server"; icon = "radicale.svg"; href = "https://radicale.fi33.buzz"; + siteMonitor = "https://radicale.fi33.buzz"; }; } { @@ -206,6 +221,7 @@ in description = "Open Source Continuous File Synchronization"; icon = "syncthing.svg"; href = "https://syncthing.fi33.buzz/"; + siteMonitor = "https://syncthing.fi33.buzz/"; }; } { @@ -213,6 +229,7 @@ in description = "Unofficial Bitwarden compatible server"; icon = "vaultwarden.svg"; href = "https://vaultwarden.fi33.buzz/"; + siteMonitor = "https://vaultwarden.fi33.buzz/"; }; } ]; @@ -224,6 +241,7 @@ in description = "Photo and video management solution"; icon = "immich.svg"; href = "https://immich.fi33.buzz/"; + siteMonitor = "https://immich.fi33.buzz/"; widget = { type = "immich"; fields = [ @@ -243,6 +261,7 @@ in description = "Media System"; icon = "jellyfin.svg"; href = "https://jellyfin.fi33.buzz/"; + siteMonitor = "https://jellyfin.fi33.buzz/"; widget = { type = "jellyfin"; url = "https://jellyfin.fi33.buzz/"; @@ -260,6 +279,7 @@ in description = "Reading server"; icon = "kavita.svg"; href = "https://kavita.fi33.buzz/"; + siteMonitor = "https://kavita.fi33.buzz/"; widget = { type = "kavita"; url = "https://kavita.fi33.buzz/"; @@ -272,6 +292,7 @@ in description = "Feed reader"; icon = "miniflux.svg"; href = "https://miniflux.fi33.buzz/"; + siteMonitor = "https://miniflux.fi33.buzz/"; widget = { type = "miniflux"; url = "https://miniflux.fi33.buzz/"; @@ -284,6 +305,7 @@ in description = "Document management system"; icon = "paperless.svg"; href = "https://paperless.fi33.buzz/"; + siteMonitor = "https://paperless.fi33.buzz/"; widget = { type = "paperlessngx"; url = "https://paperless.fi33.buzz/"; @@ -351,7 +373,6 @@ in quicklaunch.searchDescriptions = true; disableUpdateCheck = true; showStats = true; - statusStyle = "dot"; }; widgets = [ { From c96f08c3f19da1cae4bb69ae1f909d4b5f5ce9f7 Mon Sep 17 00:00:00 2001 From: Will Holdsworth Date: Mon, 2 Mar 2026 23:35:01 +1100 Subject: [PATCH 29/47] feat(homepage-dashboard): initially collapse utilities section, and hide app version --- modules/nixos/features/homepage-dashboard.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/modules/nixos/features/homepage-dashboard.nix b/modules/nixos/features/homepage-dashboard.nix index 522d254..d24f8f3 100644 --- a/modules/nixos/features/homepage-dashboard.nix +++ b/modules/nixos/features/homepage-dashboard.nix @@ -333,6 +333,7 @@ in theme = "dark"; color = "neutral"; headerStyle = "clean"; + hideVersion = true; layout = [ { "Public Services" = { @@ -367,6 +368,7 @@ in style = "row"; columns = 3; useEqualHeights = true; + initiallyCollapsed = true; }; } ]; From 663b39451c262b71bda216ac31e11f711b4ed64d Mon Sep 17 00:00:00 2001 From: Will Holdsworth Date: Wed, 4 Mar 2026 17:54:55 +1100 Subject: [PATCH 30/47] feat(laptop): update hardware uuids and ssh keys --- hosts/laptop/configuration.nix | 5 ++--- hosts/laptop/hardware-configuration.nix | 8 ++++---- modules/nixos/features/syncthing.nix | 2 +- secrets/secrets.nix | 2 +- 4 files changed, 8 insertions(+), 9 deletions(-) diff --git a/hosts/laptop/configuration.nix b/hosts/laptop/configuration.nix index b81886a..7788ef5 100644 --- a/hosts/laptop/configuration.nix +++ b/hosts/laptop/configuration.nix @@ -27,10 +27,9 @@ # keep-sorted end ]); - boot.initrd.luks.devices."luks-a7726a9d-535f-44bc-9c0e-adc501fad371".device = - "/dev/disk/by-uuid/a7726a9d-535f-44bc-9c0e-adc501fad371"; + boot.initrd.luks.devices."luks-c2f5123c-0be0-4357-b383-b3f422e99a34".device = "/dev/disk/by-uuid/c2f5123c-0be0-4357-b383-b3f422e99a34"; - system.stateVersion = "24.11"; + system.stateVersion = "25.05"; users.users.${userName} = { extraGroups = [ diff --git a/hosts/laptop/hardware-configuration.nix b/hosts/laptop/hardware-configuration.nix index 359872d..9530183 100644 --- a/hosts/laptop/hardware-configuration.nix +++ b/hosts/laptop/hardware-configuration.nix @@ -14,20 +14,20 @@ boot.extraModulePackages = [ ]; fileSystems."/" = - { device = "/dev/disk/by-uuid/b772799b-5434-4d5e-b0f9-ab425e36b9a1"; + { device = "/dev/disk/by-uuid/a240787a-6cc8-4c03-8a01-742adf305b1e"; fsType = "ext4"; }; - boot.initrd.luks.devices."luks-de6f14d8-8c7e-4e77-bfe5-264a39ef0bea".device = "/dev/disk/by-uuid/de6f14d8-8c7e-4e77-bfe5-264a39ef0bea"; + boot.initrd.luks.devices."luks-f7d7a54f-d217-4260-8754-3cac7022e7d5".device = "/dev/disk/by-uuid/f7d7a54f-d217-4260-8754-3cac7022e7d5"; fileSystems."/boot" = - { device = "/dev/disk/by-uuid/3730-5237"; + { device = "/dev/disk/by-uuid/B3C9-7C0A"; fsType = "vfat"; options = [ "fmask=0077" "dmask=0077" ]; }; swapDevices = - [ { device = "/dev/disk/by-uuid/081de704-5e9a-4e6d-ae8d-df492d0f662c"; } + [ { device = "/dev/disk/by-uuid/b07c858a-2bd7-4b9a-aec3-3f9593c461c9"; } ]; # Enables DHCP on each ethernet and wireless interface. In case of scripted networking diff --git a/modules/nixos/features/syncthing.nix b/modules/nixos/features/syncthing.nix index d9624c3..adabfa1 100644 --- a/modules/nixos/features/syncthing.nix +++ b/modules/nixos/features/syncthing.nix @@ -13,7 +13,7 @@ let } { device = "laptop"; - id = "XDDGWB2-5OFYWSY-7LN652V-3WNQMWV-4WCVHCR-2EXLDW7-FUL2MC4-MMLO4QV"; + id = "CTU345T-27VU5KK-HXLPSMO-H6C47TL-XZG3BVU-AZF7HSX-FCQHAMA-QOA3CAT"; } { device = "phone"; diff --git a/secrets/secrets.nix b/secrets/secrets.nix index c5f907c..4eed98d 100644 --- a/secrets/secrets.nix +++ b/secrets/secrets.nix @@ -1,7 +1,7 @@ let # keep-sorted start desktop = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIPHAnTQP77HQ/8nbf1oX7xftfKYtbH6MSh83wic0qdBy"; - laptop = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIOeu5HwuRayiXIZE35AxX6PmxHxbXZ8NTlTgHrcPwhcQ"; + laptop = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIOmM4LEjGPJbcUeG5363NpB3XJUyn/4B+eBCFzzuC/Td"; srv = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIOeV0NxqIGIXXgLYE6ntkHE4PARceZBp1FTI7kKLBbk8"; # keep-sorted end From fe11ecea2a45c6d9906646764d209bf3ac070d5f Mon Sep 17 00:00:00 2001 From: Will Holdsworth Date: Mon, 2 Mar 2026 23:22:07 +1100 Subject: [PATCH 31/47] feat(gatus): install --- modules/nixos/bundles/server.nix | 1 + modules/nixos/features/gatus.nix | 47 ++++++++++++++++++++++++++++++++ 2 files changed, 48 insertions(+) create mode 100644 modules/nixos/features/gatus.nix diff --git a/modules/nixos/bundles/server.nix b/modules/nixos/bundles/server.nix index 305b7ba..c1eeded 100644 --- a/modules/nixos/bundles/server.nix +++ b/modules/nixos/bundles/server.nix @@ -10,6 +10,7 @@ "copyparty" "couchdb" "cryptpad" + "gatus" "homepage-dashboard" "immich" "jellyfin" diff --git a/modules/nixos/features/gatus.nix b/modules/nixos/features/gatus.nix new file mode 100644 index 0000000..c06fb6e --- /dev/null +++ b/modules/nixos/features/gatus.nix @@ -0,0 +1,47 @@ +let + port = 5025; + certloc = "/var/lib/acme/fi33.buzz"; +in +{ + services = { + gatus = { + enable = true; + settings = { + web = { + inherit port; + }; + endpoints = [ + { + name = "website"; + url = "https://twin.sh/health"; + interval = "5m"; + conditions = [ + "[STATUS] == 200" + "[BODY].status == UP" + "[RESPONSE_TIME] < 300" + ]; + } + ]; + }; + }; + + # borgmatic.settings = { + # source_directories = [ ]; + # postgresql_databases = [ + # { + # name = "gatus"; + # hostname = "localhost"; + # username = "root"; + # password = "{credential systemd borgmatic-pg}"; + # } + # ]; + # }; + + caddy.virtualHosts."uptime.fi33.buzz".extraConfig = '' + reverse_proxy localhost:${toString port} + tls ${certloc}/cert.pem ${certloc}/key.pem { + protocols tls1.3 + } + ''; + }; +} From 48315cfb8e067cf310c75b5270b9a02e1378d11e Mon Sep 17 00:00:00 2001 From: Will Holdsworth Date: Wed, 4 Mar 2026 21:26:18 +1100 Subject: [PATCH 32/47] feat: add gatus entry for each subdomain --- modules/nixos/features/bazarr.nix | 18 ++- modules/nixos/features/copyparty.nix | 18 ++- modules/nixos/features/couchdb.nix | 20 ++- modules/nixos/features/cryptpad.nix | 22 +++- modules/nixos/features/gatus.nix | 34 +---- modules/nixos/features/homepage-dashboard.nix | 122 +++++++++++------- modules/nixos/features/immich.nix | 18 ++- modules/nixos/features/jellyfin.nix | 18 ++- modules/nixos/features/kavita.nix | 18 ++- modules/nixos/features/libretranslate.nix | 18 ++- modules/nixos/features/lidarr.nix | 18 ++- modules/nixos/features/miniflux.nix | 20 ++- modules/nixos/features/ntfy-sh.nix | 20 ++- modules/nixos/features/nzbget.nix | 18 ++- modules/nixos/features/paperless.nix | 20 ++- modules/nixos/features/prowlarr.nix | 18 ++- modules/nixos/features/qbittorrent.nix | 18 ++- modules/nixos/features/radarr.nix | 18 ++- modules/nixos/features/radicale.nix | 18 ++- modules/nixos/features/readarr.nix | 18 ++- modules/nixos/features/send.nix | 20 ++- modules/nixos/features/sonarr.nix | 18 ++- modules/nixos/features/syncthing.nix | 18 ++- modules/nixos/features/vaultwarden.nix | 20 ++- modules/templates/web-feature.nix | 4 +- 25 files changed, 464 insertions(+), 108 deletions(-) diff --git a/modules/nixos/features/bazarr.nix b/modules/nixos/features/bazarr.nix index 541235c..c25b32d 100644 --- a/modules/nixos/features/bazarr.nix +++ b/modules/nixos/features/bazarr.nix @@ -1,6 +1,8 @@ let port = 5017; certloc = "/var/lib/acme/fi33.buzz"; + hostname = "subtitles.fi33.buzz"; + url = "https://${hostname}"; in { services = { @@ -11,7 +13,21 @@ in listenPort = port; }; - caddy.virtualHosts."bazarr.fi33.buzz".extraConfig = '' + gatus.settings.endpoints = [ + { + name = "Bazarr"; + group = "Media Management"; + inherit url; + interval = "5m"; + conditions = [ + "[STATUS] == 200" + "[CONNECTED] == true" + "[RESPONSE_TIME] < 500" + ]; + } + ]; + + caddy.virtualHosts.${hostname}.extraConfig = '' reverse_proxy localhost:${toString port} tls ${certloc}/cert.pem ${certloc}/key.pem { protocols tls1.3 diff --git a/modules/nixos/features/copyparty.nix b/modules/nixos/features/copyparty.nix index ac21d2c..d06aadf 100644 --- a/modules/nixos/features/copyparty.nix +++ b/modules/nixos/features/copyparty.nix @@ -8,6 +8,8 @@ let port = 5000; certloc = "/var/lib/acme/fi33.buzz"; + hostname = "files.fi33.buzz"; + url = "https://${hostname}"; in { imports = [ inputs.copyparty.nixosModules.default ]; @@ -35,7 +37,21 @@ in }; }; - caddy.virtualHosts."copyparty.fi33.buzz".extraConfig = '' + gatus.settings.endpoints = [ + { + name = "copyparty"; + group = "Private Services"; + inherit url; + interval = "5m"; + conditions = [ + "[STATUS] == 200" + "[CONNECTED] == true" + "[RESPONSE_TIME] < 500" + ]; + } + ]; + + caddy.virtualHosts.${hostname}.extraConfig = '' reverse_proxy localhost:${toString port} tls ${certloc}/cert.pem ${certloc}/key.pem { protocols tls1.3 diff --git a/modules/nixos/features/couchdb.nix b/modules/nixos/features/couchdb.nix index 0f0d44d..9a53e77 100644 --- a/modules/nixos/features/couchdb.nix +++ b/modules/nixos/features/couchdb.nix @@ -1,6 +1,8 @@ let port = 5984; certloc = "/var/lib/acme/fi33.buzz"; + hostname = "couchdb.fi33.buzz"; + url = "https://${hostname}"; in { services = { @@ -29,13 +31,27 @@ in cors = { credentials = true; origins = '' - app://obsidian.md,capacitor://localhost,http://localhost,https://localhost,capacitor://couchdb.fi33.buzz,http://couchdb.fi33.buzz,https://couchdb.fi33.buzz + app://obsidian.md,capacitor://localhost,http://localhost,https://localhost,capacitor://${hostname},http://${hostname},${url} ''; }; }; }; - caddy.virtualHosts."couchdb.fi33.buzz".extraConfig = '' + gatus.settings.endpoints = [ + { + name = "CouchDB"; + group = "Private Services"; + inherit url; + interval = "5m"; + conditions = [ + "[STATUS] == 401" + "[CONNECTED] == true" + "[RESPONSE_TIME] < 500" + ]; + } + ]; + + caddy.virtualHosts.${hostname}.extraConfig = '' reverse_proxy localhost:${toString port} tls ${certloc}/cert.pem ${certloc}/key.pem { protocols tls1.3 diff --git a/modules/nixos/features/cryptpad.nix b/modules/nixos/features/cryptpad.nix index 8c031ff..a74d2ba 100644 --- a/modules/nixos/features/cryptpad.nix +++ b/modules/nixos/features/cryptpad.nix @@ -2,6 +2,8 @@ let httpPort = 5022; websocketPort = 5024; certloc = "/var/lib/acme/fi33.buzz"; + hostname = "cryptpad.fi33.buzz"; + url = "https://${hostname}"; in { services = { @@ -10,7 +12,7 @@ in settings = { inherit httpPort; inherit websocketPort; - httpUnsafeOrigin = "https://cryptpad.fi33.buzz"; + httpUnsafeOrigin = url; httpSafeOrigin = "https://cryptpad-ui.fi33.buzz"; inactiveTime = 7; archiveRetentionTime = 7; @@ -18,7 +20,21 @@ in }; }; - caddy.virtualHosts."cryptpad.fi33.buzz, cryptpad-ui.fi33.buzz".extraConfig = '' + gatus.settings.endpoints = [ + { + name = "CryptPad"; + group = "Public Services"; + inherit url; + interval = "5m"; + conditions = [ + "[STATUS] == 200" + "[CONNECTED] == true" + "[RESPONSE_TIME] < 500" + ]; + } + ]; + + caddy.virtualHosts."${hostname} cryptpad-ui.fi33.buzz".extraConfig = '' header Strict-Transport-Security "includeSubDomains; preload" handle /cryptpad_websocket* { @@ -36,7 +52,7 @@ in } @register { - host cryptpad.fi33.buzz + host ${hostname} path /register* } respond @register 403 diff --git a/modules/nixos/features/gatus.nix b/modules/nixos/features/gatus.nix index c06fb6e..9de288c 100644 --- a/modules/nixos/features/gatus.nix +++ b/modules/nixos/features/gatus.nix @@ -1,43 +1,17 @@ let port = 5025; certloc = "/var/lib/acme/fi33.buzz"; + hostname = "status.fi33.buzz"; + url = "https://${hostname}"; in { services = { gatus = { enable = true; - settings = { - web = { - inherit port; - }; - endpoints = [ - { - name = "website"; - url = "https://twin.sh/health"; - interval = "5m"; - conditions = [ - "[STATUS] == 200" - "[BODY].status == UP" - "[RESPONSE_TIME] < 300" - ]; - } - ]; - }; + settings.web.port = port; }; - # borgmatic.settings = { - # source_directories = [ ]; - # postgresql_databases = [ - # { - # name = "gatus"; - # hostname = "localhost"; - # username = "root"; - # password = "{credential systemd borgmatic-pg}"; - # } - # ]; - # }; - - caddy.virtualHosts."uptime.fi33.buzz".extraConfig = '' + caddy.virtualHosts.${hostname}.extraConfig = '' reverse_proxy localhost:${toString port} tls ${certloc}/cert.pem ${certloc}/key.pem { protocols tls1.3 diff --git a/modules/nixos/features/homepage-dashboard.nix b/modules/nixos/features/homepage-dashboard.nix index d24f8f3..c329bba 100644 --- a/modules/nixos/features/homepage-dashboard.nix +++ b/modules/nixos/features/homepage-dashboard.nix @@ -38,13 +38,15 @@ let # keep-sorted end ]; certloc = "/var/lib/acme/fi33.buzz"; + hostname = "home.fi33.buzz"; + url = "https://${hostname}"; in { services = { homepage-dashboard = { enable = true; listenPort = port; - allowedHosts = "homepage-dashboard.fi33.buzz"; + allowedHosts = hostname; services = [ { "Public Services" = [ @@ -80,11 +82,11 @@ in Radarr = { description = "Movie organizer/manager"; icon = "radarr.svg"; - href = "https://radarr.fi33.buzz/"; - siteMonitor = "https://radarr.fi33.buzz/"; + href = "https://movies.fi33.buzz/"; + siteMonitor = "https://movies.fi33.buzz/"; widget = { type = "radarr"; - url = "https://radarr.fi33.buzz/"; + url = "https://movies.fi33.buzz/"; key = "@radarr@"; enableQueue = true; }; @@ -94,11 +96,11 @@ in Sonarr = { description = "Smart PVR"; icon = "sonarr.svg"; - href = "https://sonarr.fi33.buzz/"; - siteMonitor = "https://sonarr.fi33.buzz/"; + href = "https://shows.fi33.buzz/"; + siteMonitor = "https://shows.fi33.buzz/"; widget = { type = "sonarr"; - url = "https://sonarr.fi33.buzz/"; + url = "https://shows.fi33.buzz/"; key = "@sonarr@"; enableQueue = true; }; @@ -108,11 +110,11 @@ in Lidarr = { description = "Like Sonarr but made for music"; icon = "lidarr.svg"; - href = "https://lidarr.fi33.buzz/"; - siteMonitor = "https://lidarr.fi33.buzz/"; + href = "https://music.fi33.buzz/"; + siteMonitor = "https://music.fi33.buzz/"; widget = { type = "lidarr"; - url = "https://lidarr.fi33.buzz/"; + url = "https://music.fi33.buzz/"; key = "@lidarr@"; enableQueue = true; }; @@ -122,11 +124,11 @@ in Readarr = { description = "Book Manager and Automation"; icon = "readarr.svg"; - href = "https://readarr.fi33.buzz/"; - siteMonitor = "https://readarr.fi33.buzz/"; + href = "https://books.fi33.buzz/"; + siteMonitor = "https://books.fi33.buzz/"; widget = { type = "readarr"; - url = "https://readarr.fi33.buzz/"; + url = "https://books.fi33.buzz/"; key = "@readarr@"; enableQueue = true; }; @@ -136,11 +138,11 @@ in Bazarr = { description = "Subtitle manager and downloader"; icon = "bazarr.svg"; - href = "https://bazarr.fi33.buzz/"; - siteMonitor = "https://bazarr.fi33.buzz/"; + href = "https://subtitles.fi33.buzz/"; + siteMonitor = "https://subtitles.fi33.buzz/"; widget = { type = "bazarr"; - url = "https://bazarr.fi33.buzz/"; + url = "https://subtitles.fi33.buzz/"; key = "@subtitles@"; }; }; @@ -162,11 +164,11 @@ in NZBget = { description = "Usenet Downloader"; icon = "nzbget.svg"; - href = "https://nzbget.fi33.buzz/"; - siteMonitor = "https://nzbget.fi33.buzz/"; + href = "https://usenet.fi33.buzz/"; + siteMonitor = "https://usenet.fi33.buzz/"; widget = { type = "nzbget"; - url = "https://nzbget.fi33.buzz/"; + url = "https://usenet.fi33.buzz/"; username = "nzbget"; password = "@nzbget@"; }; @@ -176,8 +178,8 @@ in qBittorrent = { description = "BitTorrent client"; icon = "qbittorrent.svg"; - href = "https://qbittorrent.fi33.buzz/"; - siteMonitor = "https://qbittorrent.fi33.buzz/"; + href = "https://bittorrent.fi33.buzz/"; + siteMonitor = "https://bittorrent.fi33.buzz/"; }; } ]; @@ -188,8 +190,8 @@ in copyparty = { description = "Portable file server"; icon = "sh-copyparty.svg"; - href = "https://copyparty.fi33.buzz/"; - siteMonitor = "https://copyparty.fi33.buzz/"; + href = "https://files.fi33.buzz/"; + siteMonitor = "https://files.fi33.buzz/"; }; } { @@ -204,32 +206,32 @@ in ntfy = { description = "Send push notifications using PUT/POST"; icon = "ntfy.svg"; - href = "https://ntfy-sh.fi33.buzz/"; - siteMonitor = "https://ntfy-sh.fi33.buzz/"; + href = "https://notify.fi33.buzz/"; + siteMonitor = "https://notify.fi33.buzz/"; }; } { Radicale = { description = "A simple CalDAV (calendar) and CardDAV (contact) server"; icon = "radicale.svg"; - href = "https://radicale.fi33.buzz"; - siteMonitor = "https://radicale.fi33.buzz"; + href = "https://caldav.fi33.buzz"; + siteMonitor = "https://caldav.fi33.buzz"; }; } { Syncthing = { description = "Open Source Continuous File Synchronization"; icon = "syncthing.svg"; - href = "https://syncthing.fi33.buzz/"; - siteMonitor = "https://syncthing.fi33.buzz/"; + href = "https://sync.fi33.buzz/"; + siteMonitor = "https://sync.fi33.buzz/"; }; } { Vaultwarden = { description = "Unofficial Bitwarden compatible server"; icon = "vaultwarden.svg"; - href = "https://vaultwarden.fi33.buzz/"; - siteMonitor = "https://vaultwarden.fi33.buzz/"; + href = "https://vault.fi33.buzz/"; + siteMonitor = "https://vault.fi33.buzz/"; }; } ]; @@ -240,8 +242,8 @@ in Immich = { description = "Photo and video management solution"; icon = "immich.svg"; - href = "https://immich.fi33.buzz/"; - siteMonitor = "https://immich.fi33.buzz/"; + href = "https://photos.fi33.buzz/"; + siteMonitor = "https://photos.fi33.buzz/"; widget = { type = "immich"; fields = [ @@ -250,7 +252,7 @@ in "videos" "storage" ]; - url = "https://immich.fi33.buzz/"; + url = "https://photos.fi33.buzz/"; version = 2; key = "@immich@"; }; @@ -260,11 +262,11 @@ in Jellyfin = { description = "Media System"; icon = "jellyfin.svg"; - href = "https://jellyfin.fi33.buzz/"; - siteMonitor = "https://jellyfin.fi33.buzz/"; + href = "https://media.fi33.buzz/"; + siteMonitor = "https://media.fi33.buzz/"; widget = { type = "jellyfin"; - url = "https://jellyfin.fi33.buzz/"; + url = "https://media.fi33.buzz/"; key = "@jellyfin@"; enableBlocks = true; enableNowPlaying = true; @@ -278,11 +280,11 @@ in Kavita = { description = "Reading server"; icon = "kavita.svg"; - href = "https://kavita.fi33.buzz/"; - siteMonitor = "https://kavita.fi33.buzz/"; + href = "https://library.fi33.buzz/"; + siteMonitor = "https://library.fi33.buzz/"; widget = { type = "kavita"; - url = "https://kavita.fi33.buzz/"; + url = "https://library.fi33.buzz/"; key = "@kavita-api@"; }; }; @@ -291,11 +293,11 @@ in Miniflux = { description = "Feed reader"; icon = "miniflux.svg"; - href = "https://miniflux.fi33.buzz/"; - siteMonitor = "https://miniflux.fi33.buzz/"; + href = "https://feeds.fi33.buzz/"; + siteMonitor = "https://feeds.fi33.buzz/"; widget = { type = "miniflux"; - url = "https://miniflux.fi33.buzz/"; + url = "https://feeds.fi33.buzz/"; key = "@miniflux@"; }; }; @@ -304,11 +306,11 @@ in Paperless = { description = "Document management system"; icon = "paperless.svg"; - href = "https://paperless.fi33.buzz/"; - siteMonitor = "https://paperless.fi33.buzz/"; + href = "https://documents.fi33.buzz/"; + siteMonitor = "https://documents.fi33.buzz/"; widget = { type = "paperlessngx"; - url = "https://paperless.fi33.buzz/"; + url = "https://documents.fi33.buzz/"; username = "admin"; password = "@paperless@"; }; @@ -318,6 +320,18 @@ in } { Utilities = [ + { + Gatus = { + description = "Status page"; + icon = "gatus.svg"; + href = "https://status.fi33.buzz/"; + siteMonitor = "https://status.fi33.buzz/"; + widget = { + type = "gatus"; + url = "https://status.fi33.buzz/"; + }; + }; + } { NanoKVM = { description = "Remote KVM switch"; @@ -407,7 +421,21 @@ in ]; }; - caddy.virtualHosts."homepage-dashboard.fi33.buzz".extraConfig = '' + gatus.settings.endpoints = [ + { + name = "Homepage Dashboard"; + group = "Utilities"; + inherit url; + interval = "5m"; + conditions = [ + "[STATUS] == 200" + "[CONNECTED] == true" + "[RESPONSE_TIME] < 500" + ]; + } + ]; + + caddy.virtualHosts.${hostname}.extraConfig = '' reverse_proxy localhost:${toString port} tls ${certloc}/cert.pem ${certloc}/key.pem { protocols tls1.3 diff --git a/modules/nixos/features/immich.nix b/modules/nixos/features/immich.nix index de5443f..f06222d 100644 --- a/modules/nixos/features/immich.nix +++ b/modules/nixos/features/immich.nix @@ -1,6 +1,8 @@ let port = 2283; certloc = "/var/lib/acme/fi33.buzz"; + hostname = "photos.fi33.buzz"; + url = "https://${hostname}"; in { services = { @@ -10,6 +12,20 @@ in mediaLocation = "/srv/immich"; }; + gatus.settings.endpoints = [ + { + name = "Immich"; + group = "Media Streaming"; + inherit url; + interval = "5m"; + conditions = [ + "[STATUS] == 200" + "[CONNECTED] == true" + "[RESPONSE_TIME] < 500" + ]; + } + ]; + borgmatic.settings.postgresql_databases = [ { name = "immich"; @@ -19,7 +35,7 @@ in } ]; - caddy.virtualHosts."immich.fi33.buzz".extraConfig = '' + caddy.virtualHosts.${hostname}.extraConfig = '' reverse_proxy localhost:${toString port} tls ${certloc}/cert.pem ${certloc}/key.pem { protocols tls1.3 diff --git a/modules/nixos/features/jellyfin.nix b/modules/nixos/features/jellyfin.nix index 9fab896..c2c9df3 100644 --- a/modules/nixos/features/jellyfin.nix +++ b/modules/nixos/features/jellyfin.nix @@ -1,6 +1,8 @@ let port = 8096; certloc = "/var/lib/acme/fi33.buzz"; + hostname = "media.fi33.buzz"; + url = "https://${hostname}"; in { services = { @@ -10,7 +12,21 @@ in group = "srv"; }; - caddy.virtualHosts."jellyfin.fi33.buzz".extraConfig = '' + gatus.settings.endpoints = [ + { + name = "Jellyfin"; + group = "Media Streaming"; + inherit url; + interval = "5m"; + conditions = [ + "[STATUS] == 200" + "[CONNECTED] == true" + "[RESPONSE_TIME] < 500" + ]; + } + ]; + + caddy.virtualHosts.${hostname}.extraConfig = '' reverse_proxy localhost:${toString port} tls ${certloc}/cert.pem ${certloc}/key.pem { protocols tls1.3 diff --git a/modules/nixos/features/kavita.nix b/modules/nixos/features/kavita.nix index bbb2322..769a1da 100644 --- a/modules/nixos/features/kavita.nix +++ b/modules/nixos/features/kavita.nix @@ -5,6 +5,8 @@ let port = 5015; certloc = "/var/lib/acme/fi33.buzz"; + hostname = "library.fi33.buzz"; + url = "https://${hostname}"; in { services = { @@ -15,7 +17,21 @@ in tokenKeyFile = config.age.secrets.kavita.path; }; - caddy.virtualHosts."kavita.fi33.buzz".extraConfig = '' + gatus.settings.endpoints = [ + { + name = "Kavita"; + group = "Media Streaming"; + inherit url; + interval = "5m"; + conditions = [ + "[STATUS] == 200" + "[CONNECTED] == true" + "[RESPONSE_TIME] < 500" + ]; + } + ]; + + caddy.virtualHosts.${hostname}.extraConfig = '' reverse_proxy localhost:${toString port} tls ${certloc}/cert.pem ${certloc}/key.pem { protocols tls1.3 diff --git a/modules/nixos/features/libretranslate.nix b/modules/nixos/features/libretranslate.nix index 5372e1e..8cda40a 100644 --- a/modules/nixos/features/libretranslate.nix +++ b/modules/nixos/features/libretranslate.nix @@ -1,6 +1,8 @@ let port = 5023; certloc = "/var/lib/acme/fi33.buzz"; + hostname = "translate.fi33.buzz"; + url = "https://${hostname}"; in { services = { @@ -10,7 +12,21 @@ in updateModels = true; }; - caddy.virtualHosts."translate.fi33.buzz".extraConfig = '' + gatus.settings.endpoints = [ + { + name = "LibreTranslate"; + group = "Public Services"; + inherit url; + interval = "5m"; + conditions = [ + "[STATUS] == 200" + "[CONNECTED] == true" + "[RESPONSE_TIME] < 500" + ]; + } + ]; + + caddy.virtualHosts.${hostname}.extraConfig = '' reverse_proxy localhost:${toString port} tls ${certloc}/cert.pem ${certloc}/key.pem { protocols tls1.3 diff --git a/modules/nixos/features/lidarr.nix b/modules/nixos/features/lidarr.nix index 78aa609..2945dda 100644 --- a/modules/nixos/features/lidarr.nix +++ b/modules/nixos/features/lidarr.nix @@ -1,6 +1,8 @@ let port = 5012; certloc = "/var/lib/acme/fi33.buzz"; + hostname = "music.fi33.buzz"; + url = "https://${hostname}"; in { services = { @@ -13,7 +15,21 @@ in group = "srv"; }; - caddy.virtualHosts."lidarr.fi33.buzz".extraConfig = '' + gatus.settings.endpoints = [ + { + name = "Lidarr"; + group = "Media Management"; + inherit url; + interval = "5m"; + conditions = [ + "[STATUS] == 200" + "[CONNECTED] == true" + "[RESPONSE_TIME] < 500" + ]; + } + ]; + + caddy.virtualHosts.${hostname}.extraConfig = '' reverse_proxy localhost:${toString port} tls ${certloc}/cert.pem ${certloc}/key.pem { protocols tls1.3 diff --git a/modules/nixos/features/miniflux.nix b/modules/nixos/features/miniflux.nix index 82aeeb5..e58fad1 100644 --- a/modules/nixos/features/miniflux.nix +++ b/modules/nixos/features/miniflux.nix @@ -5,6 +5,8 @@ let port = 5010; certloc = "/var/lib/acme/fi33.buzz"; + hostname = "feeds.fi33.buzz"; + url = "https://${hostname}"; in { services = { @@ -12,11 +14,25 @@ in enable = true; adminCredentialsFile = config.age.secrets.miniflux-creds.path; config = { - BASE_URL = "https://miniflux.fi33.buzz"; + BASE_URL = url; LISTEN_ADDR = "localhost:${toString port}"; }; }; + gatus.settings.endpoints = [ + { + name = "Miniflux"; + group = "Media Streaming"; + inherit url; + interval = "5m"; + conditions = [ + "[STATUS] == 200" + "[CONNECTED] == true" + "[RESPONSE_TIME] < 500" + ]; + } + ]; + borgmatic.settings.postgresql_databases = [ { name = "miniflux"; @@ -26,7 +42,7 @@ in } ]; - caddy.virtualHosts."miniflux.fi33.buzz".extraConfig = '' + caddy.virtualHosts.${hostname}.extraConfig = '' reverse_proxy localhost:${toString port} tls ${certloc}/cert.pem ${certloc}/key.pem { protocols tls1.3 diff --git a/modules/nixos/features/ntfy-sh.nix b/modules/nixos/features/ntfy-sh.nix index b82a4f0..4ee0a1b 100644 --- a/modules/nixos/features/ntfy-sh.nix +++ b/modules/nixos/features/ntfy-sh.nix @@ -1,13 +1,15 @@ let port = 5002; certloc = "/var/lib/acme/fi33.buzz"; + hostname = "notify.fi33.buzz"; + url = "https://${hostname}"; in { services = { ntfy-sh = { enable = true; settings = { - base-url = "https://ntfy-sh.fi33.buzz"; + base-url = url; listen-http = ":${toString port}"; behind-proxy = true; auth-default-access = "deny-all"; @@ -19,13 +21,27 @@ in }; }; + gatus.settings.endpoints = [ + { + name = "ntfy"; + group = "Private Services"; + inherit url; + interval = "5m"; + conditions = [ + "[STATUS] == 200" + "[CONNECTED] == true" + "[RESPONSE_TIME] < 500" + ]; + } + ]; + borgmatic.settings = { source_directories = [ "/var/lib/ntfy-sh/user.db" ]; }; - caddy.virtualHosts."ntfy-sh.fi33.buzz".extraConfig = '' + caddy.virtualHosts.${hostname}.extraConfig = '' reverse_proxy localhost:${toString port} tls ${certloc}/cert.pem ${certloc}/key.pem { protocols tls1.3 diff --git a/modules/nixos/features/nzbget.nix b/modules/nixos/features/nzbget.nix index ba469f2..fd0b01f 100644 --- a/modules/nixos/features/nzbget.nix +++ b/modules/nixos/features/nzbget.nix @@ -5,6 +5,8 @@ let port = 5018; certloc = "/var/lib/acme/fi33.buzz"; + hostname = "usenet.fi33.buzz"; + url = "https://${hostname}"; in { services = { @@ -17,7 +19,21 @@ in group = "srv"; }; - caddy.virtualHosts."nzbget.fi33.buzz".extraConfig = '' + gatus.settings.endpoints = [ + { + name = "NZBget"; + group = "Media Management"; + inherit url; + interval = "5m"; + conditions = [ + "[STATUS] == 401" + "[CONNECTED] == true" + "[RESPONSE_TIME] < 500" + ]; + } + ]; + + caddy.virtualHosts.${hostname}.extraConfig = '' reverse_proxy localhost:${toString port} tls ${certloc}/cert.pem ${certloc}/key.pem { protocols tls1.3 diff --git a/modules/nixos/features/paperless.nix b/modules/nixos/features/paperless.nix index 174eb40..0bf057c 100644 --- a/modules/nixos/features/paperless.nix +++ b/modules/nixos/features/paperless.nix @@ -5,6 +5,8 @@ let port = 5013; certloc = "/var/lib/acme/fi33.buzz"; + hostname = "documents.fi33.buzz"; + url = "https://${hostname}"; in { services = { @@ -15,10 +17,24 @@ in passwordFile = config.age.secrets.paperless.path; inherit port; settings = { - PAPERLESS_URL = "https://paperless.fi33.buzz"; + PAPERLESS_URL = url; }; }; + gatus.settings.endpoints = [ + { + name = "Paperless"; + group = "Media Streaming"; + inherit url; + interval = "5m"; + conditions = [ + "[STATUS] == 200" + "[CONNECTED] == true" + "[RESPONSE_TIME] < 500" + ]; + } + ]; + borgmatic.settings = { postgresql_databases = [ { @@ -30,7 +46,7 @@ in ]; }; - caddy.virtualHosts."paperless.fi33.buzz".extraConfig = '' + caddy.virtualHosts.${hostname}.extraConfig = '' reverse_proxy localhost:${toString port} tls ${certloc}/cert.pem ${certloc}/key.pem { protocols tls1.3 diff --git a/modules/nixos/features/prowlarr.nix b/modules/nixos/features/prowlarr.nix index a7f409f..5dcc180 100644 --- a/modules/nixos/features/prowlarr.nix +++ b/modules/nixos/features/prowlarr.nix @@ -1,6 +1,8 @@ let port = 5009; certloc = "/var/lib/acme/fi33.buzz"; + hostname = "prowlarr.fi33.buzz"; + url = "https://${hostname}"; in { services = { @@ -11,9 +13,23 @@ in }; }; + gatus.settings.endpoints = [ + { + name = "Prowlarr"; + group = "Media Management"; + inherit url; + interval = "5m"; + conditions = [ + "[STATUS] == 200" + "[CONNECTED] == true" + "[RESPONSE_TIME] < 500" + ]; + } + ]; + borgmatic.settings.source_directories = [ "/var/lib/prowlarr" ]; - caddy.virtualHosts."prowlarr.fi33.buzz".extraConfig = '' + caddy.virtualHosts.${hostname}.extraConfig = '' reverse_proxy localhost:${toString port} tls ${certloc}/cert.pem ${certloc}/key.pem { protocols tls1.3 diff --git a/modules/nixos/features/qbittorrent.nix b/modules/nixos/features/qbittorrent.nix index 577f0c9..bee470a 100644 --- a/modules/nixos/features/qbittorrent.nix +++ b/modules/nixos/features/qbittorrent.nix @@ -1,6 +1,8 @@ let port = 5005; certloc = "/var/lib/acme/fi33.buzz"; + hostname = "bittorrent.fi33.buzz"; + url = "https://${hostname}"; in { services = { @@ -14,7 +16,21 @@ in ]; }; - caddy.virtualHosts."qbittorrent.fi33.buzz".extraConfig = '' + gatus.settings.endpoints = [ + { + name = "qBittorrent"; + group = "Media Management"; + inherit url; + interval = "5m"; + conditions = [ + "[STATUS] == 200" + "[CONNECTED] == true" + "[RESPONSE_TIME] < 500" + ]; + } + ]; + + caddy.virtualHosts.${hostname}.extraConfig = '' reverse_proxy localhost:${toString port} tls ${certloc}/cert.pem ${certloc}/key.pem { protocols tls1.3 diff --git a/modules/nixos/features/radarr.nix b/modules/nixos/features/radarr.nix index 30063eb..1d7301a 100644 --- a/modules/nixos/features/radarr.nix +++ b/modules/nixos/features/radarr.nix @@ -1,6 +1,8 @@ let port = 5007; certloc = "/var/lib/acme/fi33.buzz"; + hostname = "movies.fi33.buzz"; + url = "https://${hostname}"; in { services = { @@ -13,7 +15,21 @@ in group = "srv"; }; - caddy.virtualHosts."radarr.fi33.buzz".extraConfig = '' + gatus.settings.endpoints = [ + { + name = "Radarr"; + group = "Media Management"; + inherit url; + interval = "5m"; + conditions = [ + "[STATUS] == 200" + "[CONNECTED] == true" + "[RESPONSE_TIME] < 500" + ]; + } + ]; + + caddy.virtualHosts.${hostname}.extraConfig = '' reverse_proxy localhost:${toString port} tls ${certloc}/cert.pem ${certloc}/key.pem { protocols tls1.3 diff --git a/modules/nixos/features/radicale.nix b/modules/nixos/features/radicale.nix index 73155e6..787c809 100644 --- a/modules/nixos/features/radicale.nix +++ b/modules/nixos/features/radicale.nix @@ -5,6 +5,8 @@ let port = 5003; certloc = "/var/lib/acme/fi33.buzz"; + hostname = "caldav.fi33.buzz"; + url = "https://${hostname}"; in { services = { @@ -28,7 +30,21 @@ in }; }; - caddy.virtualHosts."radicale.fi33.buzz".extraConfig = '' + gatus.settings.endpoints = [ + { + name = "Radicale"; + group = "Private Services"; + inherit url; + interval = "5m"; + conditions = [ + "[STATUS] == 200" + "[CONNECTED] == true" + "[RESPONSE_TIME] < 500" + ]; + } + ]; + + caddy.virtualHosts.${hostname}.extraConfig = '' reverse_proxy localhost:${toString port} tls ${certloc}/cert.pem ${certloc}/key.pem { protocols tls1.3 diff --git a/modules/nixos/features/readarr.nix b/modules/nixos/features/readarr.nix index 42a884b..1ec6fa2 100644 --- a/modules/nixos/features/readarr.nix +++ b/modules/nixos/features/readarr.nix @@ -1,6 +1,8 @@ let port = 5016; certloc = "/var/lib/acme/fi33.buzz"; + hostname = "books.fi33.buzz"; + url = "https://${hostname}"; in { services = { @@ -13,7 +15,21 @@ in group = "srv"; }; - caddy.virtualHosts."readarr.fi33.buzz".extraConfig = '' + gatus.settings.endpoints = [ + { + name = "Readarr"; + group = "Media Management"; + inherit url; + interval = "5m"; + conditions = [ + "[STATUS] == 200" + "[CONNECTED] == true" + "[RESPONSE_TIME] < 500" + ]; + } + ]; + + caddy.virtualHosts.${hostname}.extraConfig = '' reverse_proxy localhost:${toString port} tls ${certloc}/cert.pem ${certloc}/key.pem { protocols tls1.3 diff --git a/modules/nixos/features/send.nix b/modules/nixos/features/send.nix index defb025..f7b3d50 100644 --- a/modules/nixos/features/send.nix +++ b/modules/nixos/features/send.nix @@ -1,13 +1,15 @@ let port = 5020; certloc = "/var/lib/acme/fi33.buzz"; + hostname = "send.fi33.buzz"; + url = "https://${hostname}"; in { services = { send = { enable = true; inherit port; - baseUrl = "https://send.fi33.buzz"; + baseUrl = url; environment = { DEFAULT_EXPIRE_SECONDS = 360; EXPIRE_TIMES_SECONDS = "360"; @@ -18,7 +20,21 @@ in }; }; - caddy.virtualHosts."send.fi33.buzz".extraConfig = '' + gatus.settings.endpoints = [ + { + name = "Send"; + group = "Public Services"; + inherit url; + interval = "5m"; + conditions = [ + "[STATUS] == 200" + "[CONNECTED] == true" + "[RESPONSE_TIME] < 500" + ]; + } + ]; + + caddy.virtualHosts.${hostname}.extraConfig = '' reverse_proxy localhost:${toString port} tls ${certloc}/cert.pem ${certloc}/key.pem { protocols tls1.3 diff --git a/modules/nixos/features/sonarr.nix b/modules/nixos/features/sonarr.nix index 691b4b8..8c2b746 100644 --- a/modules/nixos/features/sonarr.nix +++ b/modules/nixos/features/sonarr.nix @@ -1,6 +1,8 @@ let port = 5006; certloc = "/var/lib/acme/fi33.buzz"; + hostname = "shows.fi33.buzz"; + url = "https://${hostname}"; in { services = { @@ -13,7 +15,21 @@ in group = "srv"; }; - caddy.virtualHosts."sonarr.fi33.buzz".extraConfig = '' + gatus.settings.endpoints = [ + { + name = "Sonarr"; + group = "Media Management"; + inherit url; + interval = "5m"; + conditions = [ + "[STATUS] == 200" + "[CONNECTED] == true" + "[RESPONSE_TIME] < 500" + ]; + } + ]; + + caddy.virtualHosts.${hostname}.extraConfig = '' reverse_proxy localhost:${toString port} tls ${certloc}/cert.pem ${certloc}/key.pem { protocols tls1.3 diff --git a/modules/nixos/features/syncthing.nix b/modules/nixos/features/syncthing.nix index adabfa1..af882c0 100644 --- a/modules/nixos/features/syncthing.nix +++ b/modules/nixos/features/syncthing.nix @@ -41,6 +41,8 @@ let ) (builtins.filter (deviceSet: deviceSet.device != hostName) devicesList) ); certloc = "/var/lib/acme/fi33.buzz"; + hostname = "sync.fi33.buzz"; + url = "https://${hostname}"; in { services = { @@ -56,6 +58,20 @@ in }; }; + gatus.settings.endpoints = [ + { + name = "Syncthing"; + group = "Private Services"; + inherit url; + interval = "5m"; + conditions = [ + "[STATUS] == 200" + "[CONNECTED] == true" + "[RESPONSE_TIME] < 500" + ]; + } + ]; + borgmatic.settings = if userName == "srv" then { @@ -67,7 +83,7 @@ in else null; - caddy.virtualHosts."syncthing.fi33.buzz".extraConfig = '' + caddy.virtualHosts.${hostname}.extraConfig = '' reverse_proxy http://localhost:${toString port} tls ${certloc}/cert.pem ${certloc}/key.pem { protocols tls1.3 diff --git a/modules/nixos/features/vaultwarden.nix b/modules/nixos/features/vaultwarden.nix index be8cb7a..d080ada 100644 --- a/modules/nixos/features/vaultwarden.nix +++ b/modules/nixos/features/vaultwarden.nix @@ -5,6 +5,8 @@ let port = 5001; certloc = "/var/lib/acme/fi33.buzz"; + hostname = "vault.fi33.buzz"; + url = "https://${hostname}"; in { services = { @@ -13,7 +15,7 @@ in backupDir = "/srv/vaultwarden"; config = { rocketPort = toString port; - domain = "https://vaultwarden.fi33.buzz"; + domain = url; signupsAllowed = false; invitationsAllowed = false; showPasswordHint = false; @@ -23,7 +25,21 @@ in }; }; - caddy.virtualHosts."vaultwarden.fi33.buzz".extraConfig = '' + gatus.settings.endpoints = [ + { + name = "Vaultwarden"; + group = "Private Services"; + inherit url; + interval = "5m"; + conditions = [ + "[STATUS] == 200" + "[CONNECTED] == true" + "[RESPONSE_TIME] < 500" + ]; + } + ]; + + caddy.virtualHosts.${hostname}.extraConfig = '' reverse_proxy localhost:${toString port} tls ${certloc}/cert.pem ${certloc}/key.pem { protocols tls1.3 diff --git a/modules/templates/web-feature.nix b/modules/templates/web-feature.nix index 8fa5ed6..5a2ddbf 100644 --- a/modules/templates/web-feature.nix +++ b/modules/templates/web-feature.nix @@ -1,6 +1,8 @@ let port = 0000; certloc = "/var/lib/acme/fi33.buzz"; + hostname = "feature.fi33.buzz"; + url = "https://${hostname}"; in { services = { @@ -20,7 +22,7 @@ in # ]; # }; - caddy.virtualHosts."feature.fi33.buzz".extraConfig = '' + caddy.virtualHosts.${hostname}.extraConfig = '' reverse_proxy localhost:${toString port} tls ${certloc}/cert.pem ${certloc}/key.pem { protocols tls1.3 From a7b5995e01f971e0ec19dd1fd6b0477378ec7972 Mon Sep 17 00:00:00 2001 From: Will Holdsworth Date: Sat, 7 Mar 2026 13:35:14 +1100 Subject: [PATCH 33/47] feat(gatus): add custom appearance --- modules/nixos/features/gatus.nix | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/modules/nixos/features/gatus.nix b/modules/nixos/features/gatus.nix index 9de288c..cfd2629 100644 --- a/modules/nixos/features/gatus.nix +++ b/modules/nixos/features/gatus.nix @@ -8,7 +8,18 @@ in services = { gatus = { enable = true; - settings.web.port = port; + settings = { + ui = { + title = "Health Dashboard | Fi33Buzz"; + description = "Fi33Buzz health dashboard"; + dashboard-heading = ""; + dashboard-subheading = ""; + header = "Fi33Buzz Status"; + link = "https://home.fi33.buzz/"; + default-sort-by = "group"; + }; + web.port = port; + }; }; caddy.virtualHosts.${hostname}.extraConfig = '' From 9a7169c1cb0680ecca6fbe19d566eb1e58225ca5 Mon Sep 17 00:00:00 2001 From: Will Holdsworth Date: Sat, 7 Mar 2026 13:38:39 +1100 Subject: [PATCH 34/47] feat(ntfy): add user for gatus with token --- modules/nixos/features/ntfy-sh.nix | 13 ++++++++++++- secrets/ntfy.age | 9 +++++++++ secrets/secrets.nix | 2 ++ 3 files changed, 23 insertions(+), 1 deletion(-) create mode 100644 secrets/ntfy.age diff --git a/modules/nixos/features/ntfy-sh.nix b/modules/nixos/features/ntfy-sh.nix index 4ee0a1b..de396ff 100644 --- a/modules/nixos/features/ntfy-sh.nix +++ b/modules/nixos/features/ntfy-sh.nix @@ -1,3 +1,7 @@ +{ + config, + ... +}: let port = 5002; certloc = "/var/lib/acme/fi33.buzz"; @@ -8,6 +12,7 @@ in services = { ntfy-sh = { enable = true; + environmentFile = config.age.secrets.ntfy.path; settings = { base-url = url; listen-http = ":${toString port}"; @@ -16,8 +21,12 @@ in auth-users = [ "Debit3885:$2a$12$ZeFimzdifNFSmf0W2oi.vuZfsqae75md9nhC/Q2BcKMyvDO8T.uEK:admin" "borgmatic:$2a$12$ZeFimzdifNFSmf0W2oi.vuZfsqae75md9nhC/Q2BcKMyvDO8T.uEK:user" + "gatus:$2a$12$OswG3sB8oDaB.KpawKM3P.78dID.Tj/0y5qeVD5BE6EH5bpGKe.na:user" + ]; + auth-access = [ + "borgmatic:backups:wo" + "gatus:services:wo" ]; - auth-access = [ "borgmatic:backups:wo" ]; }; }; @@ -48,4 +57,6 @@ in } ''; }; + + age.secrets.ntfy.file = ../../../secrets/ntfy.age; } diff --git a/secrets/ntfy.age b/secrets/ntfy.age new file mode 100644 index 0000000..c173ff0 --- /dev/null +++ b/secrets/ntfy.age @@ -0,0 +1,9 @@ +age-encryption.org/v1 +-> ssh-ed25519 qLT+DQ jySlchGAPxdkjpZzg+5BLH7O5yM+O5a9CleBVMqbck8 +I5OEMjXJNrNKIBumXmiAMXRa1AZx0cKQ0BfM7HYCcRc +-> ssh-ed25519 NanIwQ 29upo2jTQF8Vz91yWmYCXnQW4LgYcvt1TcF/HLA5klA +eQla3EMQnRPzhd5MyDL3byPhIiio0rFFM+yesPLEtv8 +-> ssh-ed25519 LtK9yQ Vx/lQ6M/wYa9483YpuCwwobNuIZjv/Sy9vl695H05BQ +qqUWRnrMYfflhcznrF2QKfODDa7vmz6Uy7fk1zSpbEE +--- xunznREPjjEVRWAmqI/4xKp/NrNk6C3B1Z+3Vjf2TL4 +m{z\,TSS7Tk)hVX0mN?=ӟx TdY0[)ۓSZ:>FU֙~ \ No newline at end of file diff --git a/secrets/secrets.nix b/secrets/secrets.nix index 4eed98d..8909f33 100644 --- a/secrets/secrets.nix +++ b/secrets/secrets.nix @@ -19,6 +19,7 @@ in "borgmatic-pg.age".publicKeys = users; "borgmatic.age".publicKeys = users; "copyparty.age".publicKeys = users; + "gatus.age".publicKeys = users; "git_signing_key.age".publicKeys = users; "git_signing_key.pub.age".publicKeys = users; "immich.age".publicKeys = users; @@ -27,6 +28,7 @@ in "kavita.age".publicKeys = users; "lidarr.age".publicKeys = users; "miniflux-creds.age".publicKeys = users; + "ntfy.age".publicKeys = users; "nzbget.age".publicKeys = users; "paperless.age".publicKeys = users; "porkbun-api.age".publicKeys = users; From c41995561a2b9d9a3646cd3ff21a9c43d687fa10 Mon Sep 17 00:00:00 2001 From: Will Holdsworth Date: Sat, 7 Mar 2026 13:39:05 +1100 Subject: [PATCH 35/47] feat(gatus): add ntfy alerting for all services --- modules/nixos/features/bazarr.nix | 1 + modules/nixos/features/copyparty.nix | 1 + modules/nixos/features/couchdb.nix | 1 + modules/nixos/features/cryptpad.nix | 1 + modules/nixos/features/gatus.nix | 23 +++++++++++++++++++ modules/nixos/features/homepage-dashboard.nix | 1 + modules/nixos/features/immich.nix | 1 + modules/nixos/features/jellyfin.nix | 1 + modules/nixos/features/kavita.nix | 1 + modules/nixos/features/libretranslate.nix | 1 + modules/nixos/features/lidarr.nix | 1 + modules/nixos/features/miniflux.nix | 1 + modules/nixos/features/nzbget.nix | 1 + modules/nixos/features/paperless.nix | 1 + modules/nixos/features/prowlarr.nix | 1 + modules/nixos/features/qbittorrent.nix | 1 + modules/nixos/features/radarr.nix | 1 + modules/nixos/features/radicale.nix | 1 + modules/nixos/features/readarr.nix | 1 + modules/nixos/features/send.nix | 1 + modules/nixos/features/sonarr.nix | 1 + modules/nixos/features/syncthing.nix | 1 + modules/nixos/features/vaultwarden.nix | 1 + secrets/gatus.age | 10 ++++++++ 24 files changed, 55 insertions(+) create mode 100644 secrets/gatus.age diff --git a/modules/nixos/features/bazarr.nix b/modules/nixos/features/bazarr.nix index c25b32d..a121fa5 100644 --- a/modules/nixos/features/bazarr.nix +++ b/modules/nixos/features/bazarr.nix @@ -24,6 +24,7 @@ in "[CONNECTED] == true" "[RESPONSE_TIME] < 500" ]; + alerts = [ { type = "ntfy"; } ]; } ]; diff --git a/modules/nixos/features/copyparty.nix b/modules/nixos/features/copyparty.nix index d06aadf..1eff57b 100644 --- a/modules/nixos/features/copyparty.nix +++ b/modules/nixos/features/copyparty.nix @@ -48,6 +48,7 @@ in "[CONNECTED] == true" "[RESPONSE_TIME] < 500" ]; + alerts = [ { type = "ntfy"; } ]; } ]; diff --git a/modules/nixos/features/couchdb.nix b/modules/nixos/features/couchdb.nix index 9a53e77..a5edbb0 100644 --- a/modules/nixos/features/couchdb.nix +++ b/modules/nixos/features/couchdb.nix @@ -48,6 +48,7 @@ in "[CONNECTED] == true" "[RESPONSE_TIME] < 500" ]; + alerts = [ { type = "ntfy"; } ]; } ]; diff --git a/modules/nixos/features/cryptpad.nix b/modules/nixos/features/cryptpad.nix index a74d2ba..be8c7ad 100644 --- a/modules/nixos/features/cryptpad.nix +++ b/modules/nixos/features/cryptpad.nix @@ -31,6 +31,7 @@ in "[CONNECTED] == true" "[RESPONSE_TIME] < 500" ]; + alerts = [ { type = "ntfy"; } ]; } ]; diff --git a/modules/nixos/features/gatus.nix b/modules/nixos/features/gatus.nix index cfd2629..2fe39ce 100644 --- a/modules/nixos/features/gatus.nix +++ b/modules/nixos/features/gatus.nix @@ -1,3 +1,7 @@ +{ + config, + ... +}: let port = 5025; certloc = "/var/lib/acme/fi33.buzz"; @@ -8,7 +12,24 @@ in services = { gatus = { enable = true; + environmentFile = config.age.secrets.gatus.path; settings = { + alerting = { + ntfy = { + topic = "services"; + url = config.services.ntfy-sh.settings.base-url; + token = "$NTFY_TOKEN"; + click = url; + default-alert = { + description = "Health Check Failed"; + send-on-resolved = true; + }; + }; + }; + connectivity.checker = { + target = "1.1.1.1:53"; + interval = "60s"; + }; ui = { title = "Health Dashboard | Fi33Buzz"; description = "Fi33Buzz health dashboard"; @@ -29,4 +50,6 @@ in } ''; }; + + age.secrets.gatus.file = ../../../secrets/gatus.age; } diff --git a/modules/nixos/features/homepage-dashboard.nix b/modules/nixos/features/homepage-dashboard.nix index c329bba..694ad77 100644 --- a/modules/nixos/features/homepage-dashboard.nix +++ b/modules/nixos/features/homepage-dashboard.nix @@ -432,6 +432,7 @@ in "[CONNECTED] == true" "[RESPONSE_TIME] < 500" ]; + alerts = [ { type = "ntfy"; } ]; } ]; diff --git a/modules/nixos/features/immich.nix b/modules/nixos/features/immich.nix index f06222d..0908fd1 100644 --- a/modules/nixos/features/immich.nix +++ b/modules/nixos/features/immich.nix @@ -23,6 +23,7 @@ in "[CONNECTED] == true" "[RESPONSE_TIME] < 500" ]; + alerts = [ { type = "ntfy"; } ]; } ]; diff --git a/modules/nixos/features/jellyfin.nix b/modules/nixos/features/jellyfin.nix index c2c9df3..6e1f7b8 100644 --- a/modules/nixos/features/jellyfin.nix +++ b/modules/nixos/features/jellyfin.nix @@ -23,6 +23,7 @@ in "[CONNECTED] == true" "[RESPONSE_TIME] < 500" ]; + alerts = [ { type = "ntfy"; } ]; } ]; diff --git a/modules/nixos/features/kavita.nix b/modules/nixos/features/kavita.nix index 769a1da..814cd91 100644 --- a/modules/nixos/features/kavita.nix +++ b/modules/nixos/features/kavita.nix @@ -28,6 +28,7 @@ in "[CONNECTED] == true" "[RESPONSE_TIME] < 500" ]; + alerts = [ { type = "ntfy"; } ]; } ]; diff --git a/modules/nixos/features/libretranslate.nix b/modules/nixos/features/libretranslate.nix index 8cda40a..ed20161 100644 --- a/modules/nixos/features/libretranslate.nix +++ b/modules/nixos/features/libretranslate.nix @@ -23,6 +23,7 @@ in "[CONNECTED] == true" "[RESPONSE_TIME] < 500" ]; + alerts = [ { type = "ntfy"; } ]; } ]; diff --git a/modules/nixos/features/lidarr.nix b/modules/nixos/features/lidarr.nix index 2945dda..620f684 100644 --- a/modules/nixos/features/lidarr.nix +++ b/modules/nixos/features/lidarr.nix @@ -26,6 +26,7 @@ in "[CONNECTED] == true" "[RESPONSE_TIME] < 500" ]; + alerts = [ { type = "ntfy"; } ]; } ]; diff --git a/modules/nixos/features/miniflux.nix b/modules/nixos/features/miniflux.nix index e58fad1..fcd6526 100644 --- a/modules/nixos/features/miniflux.nix +++ b/modules/nixos/features/miniflux.nix @@ -30,6 +30,7 @@ in "[CONNECTED] == true" "[RESPONSE_TIME] < 500" ]; + alerts = [ { type = "ntfy"; } ]; } ]; diff --git a/modules/nixos/features/nzbget.nix b/modules/nixos/features/nzbget.nix index fd0b01f..18fc272 100644 --- a/modules/nixos/features/nzbget.nix +++ b/modules/nixos/features/nzbget.nix @@ -30,6 +30,7 @@ in "[CONNECTED] == true" "[RESPONSE_TIME] < 500" ]; + alerts = [ { type = "ntfy"; } ]; } ]; diff --git a/modules/nixos/features/paperless.nix b/modules/nixos/features/paperless.nix index 0bf057c..13cdd59 100644 --- a/modules/nixos/features/paperless.nix +++ b/modules/nixos/features/paperless.nix @@ -32,6 +32,7 @@ in "[CONNECTED] == true" "[RESPONSE_TIME] < 500" ]; + alerts = [ { type = "ntfy"; } ]; } ]; diff --git a/modules/nixos/features/prowlarr.nix b/modules/nixos/features/prowlarr.nix index 5dcc180..a6126c9 100644 --- a/modules/nixos/features/prowlarr.nix +++ b/modules/nixos/features/prowlarr.nix @@ -24,6 +24,7 @@ in "[CONNECTED] == true" "[RESPONSE_TIME] < 500" ]; + alerts = [ { type = "ntfy"; } ]; } ]; diff --git a/modules/nixos/features/qbittorrent.nix b/modules/nixos/features/qbittorrent.nix index bee470a..c44683a 100644 --- a/modules/nixos/features/qbittorrent.nix +++ b/modules/nixos/features/qbittorrent.nix @@ -27,6 +27,7 @@ in "[CONNECTED] == true" "[RESPONSE_TIME] < 500" ]; + alerts = [ { type = "ntfy"; } ]; } ]; diff --git a/modules/nixos/features/radarr.nix b/modules/nixos/features/radarr.nix index 1d7301a..cdbfe0d 100644 --- a/modules/nixos/features/radarr.nix +++ b/modules/nixos/features/radarr.nix @@ -26,6 +26,7 @@ in "[CONNECTED] == true" "[RESPONSE_TIME] < 500" ]; + alerts = [ { type = "ntfy"; } ]; } ]; diff --git a/modules/nixos/features/radicale.nix b/modules/nixos/features/radicale.nix index 787c809..1cbaf04 100644 --- a/modules/nixos/features/radicale.nix +++ b/modules/nixos/features/radicale.nix @@ -41,6 +41,7 @@ in "[CONNECTED] == true" "[RESPONSE_TIME] < 500" ]; + alerts = [ { type = "ntfy"; } ]; } ]; diff --git a/modules/nixos/features/readarr.nix b/modules/nixos/features/readarr.nix index 1ec6fa2..d78a322 100644 --- a/modules/nixos/features/readarr.nix +++ b/modules/nixos/features/readarr.nix @@ -26,6 +26,7 @@ in "[CONNECTED] == true" "[RESPONSE_TIME] < 500" ]; + alerts = [ { type = "ntfy"; } ]; } ]; diff --git a/modules/nixos/features/send.nix b/modules/nixos/features/send.nix index f7b3d50..cdb6620 100644 --- a/modules/nixos/features/send.nix +++ b/modules/nixos/features/send.nix @@ -31,6 +31,7 @@ in "[CONNECTED] == true" "[RESPONSE_TIME] < 500" ]; + alerts = [ { type = "ntfy"; } ]; } ]; diff --git a/modules/nixos/features/sonarr.nix b/modules/nixos/features/sonarr.nix index 8c2b746..696872d 100644 --- a/modules/nixos/features/sonarr.nix +++ b/modules/nixos/features/sonarr.nix @@ -26,6 +26,7 @@ in "[CONNECTED] == true" "[RESPONSE_TIME] < 500" ]; + alerts = [ { type = "ntfy"; } ]; } ]; diff --git a/modules/nixos/features/syncthing.nix b/modules/nixos/features/syncthing.nix index af882c0..07976f2 100644 --- a/modules/nixos/features/syncthing.nix +++ b/modules/nixos/features/syncthing.nix @@ -69,6 +69,7 @@ in "[CONNECTED] == true" "[RESPONSE_TIME] < 500" ]; + alerts = [ { type = "ntfy"; } ]; } ]; diff --git a/modules/nixos/features/vaultwarden.nix b/modules/nixos/features/vaultwarden.nix index d080ada..5833a18 100644 --- a/modules/nixos/features/vaultwarden.nix +++ b/modules/nixos/features/vaultwarden.nix @@ -36,6 +36,7 @@ in "[CONNECTED] == true" "[RESPONSE_TIME] < 500" ]; + alerts = [ { type = "ntfy"; } ]; } ]; diff --git a/secrets/gatus.age b/secrets/gatus.age new file mode 100644 index 0000000..13d455e --- /dev/null +++ b/secrets/gatus.age @@ -0,0 +1,10 @@ +age-encryption.org/v1 +-> ssh-ed25519 qLT+DQ 3vJV+PZ1IvwiFPplPEwXkaZK4y0QLxkvi/stzAV+HWg +3htQOBS3ph9+OXG2ZYtMyzErGtYRP1vzycua+vhPX+4 +-> ssh-ed25519 NanIwQ 748IDG9uT6jMj0CSU3EeBqRd7lZ7NTJoUldo4FUfkFI +bYaXhcXjYgKqEaUeRZQhx9neK1pDVN3QbhblLOcGUg0 +-> ssh-ed25519 LtK9yQ au/UGPL91M0sUzMeOKPOkltXWDPoWeCrUWrD2OIsJA0 +thILTQH9hrcBYBbRSZaHMODAhCKWsqomDuEK4hcKAqM +--- UpA2kIfSBwfgMxjt2x61KFAiUaV3sHQ6Gp2R87cvnwo +*D27p梔 pQ +Fufpڰ4Q5ѨeӪ ވ;ꖓz8i{@Ǘ \ No newline at end of file From 3ac81e38e8575c30b2c4d389a6b04f5b69337cdd Mon Sep 17 00:00:00 2001 From: Will Holdsworth Date: Sat, 7 Mar 2026 13:39:16 +1100 Subject: [PATCH 36/47] feat: add gatus config to web-feature template --- modules/templates/web-feature.nix | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/modules/templates/web-feature.nix b/modules/templates/web-feature.nix index 5a2ddbf..8e8978c 100644 --- a/modules/templates/web-feature.nix +++ b/modules/templates/web-feature.nix @@ -10,6 +10,21 @@ in enable = true; }; + gatus.settings.endpoints = [ + { + name = "feature"; + group = ""; + inherit url; + interval = "5m"; + conditions = [ + "[STATUS] == 200" + "[CONNECTED] == true" + "[RESPONSE_TIME] < 500" + ]; + alerts = [ { type = "ntfy"; } ]; + } + ]; + # borgmatic.settings = { # source_directories = [ ]; # postgresql_databases = [ From 5a6da0744bdd6c8adaf1afacbd6a8c8f010597fd Mon Sep 17 00:00:00 2001 From: Will Holdsworth Date: Sat, 7 Mar 2026 14:34:23 +1100 Subject: [PATCH 37/47] feat(fi33.buzz): host personal website --- modules/nixos/bundles/server.nix | 1 + modules/nixos/features/fi33.buzz.nix | 19 +++++++++++++++++++ 2 files changed, 20 insertions(+) create mode 100644 modules/nixos/features/fi33.buzz.nix diff --git a/modules/nixos/bundles/server.nix b/modules/nixos/bundles/server.nix index c1eeded..0cbc9e9 100644 --- a/modules/nixos/bundles/server.nix +++ b/modules/nixos/bundles/server.nix @@ -10,6 +10,7 @@ "copyparty" "couchdb" "cryptpad" + "fi33.buzz" "gatus" "homepage-dashboard" "immich" diff --git a/modules/nixos/features/fi33.buzz.nix b/modules/nixos/features/fi33.buzz.nix new file mode 100644 index 0000000..947026e --- /dev/null +++ b/modules/nixos/features/fi33.buzz.nix @@ -0,0 +1,19 @@ +let + certloc = "/var/lib/acme/fi33.buzz"; + hostname = "www.fi33.buzz"; +in +{ + # TODO why can't I serve content on fi33.buzz? dns propagation issue? + services.caddy.virtualHosts = { + "fi33.buzz".extraConfig = '' + redir https://www.fi33.buzz{uri} permanent + ''; + ${hostname}.extraConfig = '' + root * /srv/fi33.buzz/public + file_server + tls ${certloc}/cert.pem ${certloc}/key.pem { + protocols tls1.3 + } + ''; + }; +} From 254804698513c586519014c18d30fdde81b9b933 Mon Sep 17 00:00:00 2001 From: Will Holdsworth Date: Sat, 7 Mar 2026 16:42:57 +1100 Subject: [PATCH 38/47] feat(mealie): install --- modules/nixos/bundles/server.nix | 1 + modules/nixos/features/mealie.nix | 56 +++++++++++++++++++++++++++++++ 2 files changed, 57 insertions(+) create mode 100644 modules/nixos/features/mealie.nix diff --git a/modules/nixos/bundles/server.nix b/modules/nixos/bundles/server.nix index 0cbc9e9..1aa12e4 100644 --- a/modules/nixos/bundles/server.nix +++ b/modules/nixos/bundles/server.nix @@ -18,6 +18,7 @@ "kavita" "libretranslate" "lidarr" + "mealie" "miniflux" "ntfy-sh" "nzbget" diff --git a/modules/nixos/features/mealie.nix b/modules/nixos/features/mealie.nix new file mode 100644 index 0000000..368ee09 --- /dev/null +++ b/modules/nixos/features/mealie.nix @@ -0,0 +1,56 @@ +{ + config, + ... +}: +let + port = 5026; + certloc = "/var/lib/acme/fi33.buzz"; + hostname = "mealie.fi33.buzz"; + url = "https://${hostname}"; +in +{ + services = { + mealie = { + enable = true; + inherit port; + settings = { + TZ = "Australia/Melbourne"; + ALLOW_SIGNUP = "false"; + }; + }; + + gatus.settings.endpoints = [ + { + name = "Mealie"; + group = "Private Services"; + inherit url; + interval = "5m"; + conditions = [ + "[STATUS] == 200" + "[CONNECTED] == true" + "[RESPONSE_TIME] < 500" + ]; + alerts = [ { type = "ntfy"; } ]; + } + ]; + + # borgmatic.settings = { + # source_directories = [ ]; + # postgresql_databases = [ + # { + # name = "mealie"; + # hostname = "localhost"; + # username = "root"; + # password = "{credential systemd borgmatic-pg}"; + # } + # ]; + # }; + + caddy.virtualHosts.${hostname}.extraConfig = '' + reverse_proxy localhost:${toString port} + tls ${certloc}/cert.pem ${certloc}/key.pem { + protocols tls1.3 + } + ''; + }; +} From 1b86bc33db643908e8ea658d16796afb13b77ff7 Mon Sep 17 00:00:00 2001 From: Will Holdsworth Date: Sat, 7 Mar 2026 16:43:12 +1100 Subject: [PATCH 39/47] feat(homepage-dashboard): add mealie --- modules/nixos/features/homepage-dashboard.nix | 15 +++++++++++++++ secrets/mealie.age | Bin 0 -> 681 bytes secrets/secrets.nix | 1 + 3 files changed, 16 insertions(+) create mode 100644 secrets/mealie.age diff --git a/modules/nixos/features/homepage-dashboard.nix b/modules/nixos/features/homepage-dashboard.nix index 694ad77..3516600 100644 --- a/modules/nixos/features/homepage-dashboard.nix +++ b/modules/nixos/features/homepage-dashboard.nix @@ -27,6 +27,7 @@ let "jellyfin" "kavita-api" "lidarr" + "mealie" "miniflux" "nzbget" "paperless" @@ -202,6 +203,20 @@ in siteMonitor = "https://couchdb.fi33.buzz/_utils/"; }; } + { + Mealie = { + description = "Recipe manager and meal planner"; + icon = "mealie.svg"; + href = "https://mealie.fi33.buzz/"; + siteMonitor = "https://mealie.fi33.buzz/"; + widget = { + type = "mealie"; + url = "https://mealie.fi33.buzz/"; + version = 2; + key = "@mealie@"; + }; + }; + } { ntfy = { description = "Send push notifications using PUT/POST"; diff --git a/secrets/mealie.age b/secrets/mealie.age new file mode 100644 index 0000000000000000000000000000000000000000..e15d8914dfafbca8a0cacf30ed3bc2aa2bd22ce6 GIT binary patch literal 681 zcmYdHPt{G$OD?J`D9Oyv)5|YP*Do{V(zR14F3!+RO))YxHMCSH^a;^+2~==&G_eeF z)3z*6^0D+V3($87FL5i$jw&`W^G%jgPYS3kP0u$e2`KQ+3p6SZs7g0;GeNh_FEP)vJWwGb!q7Cb*x$l9%G@wd zJ3`;jvLY-rvLMXU(A_7wusq1e!ad4Auh7@Pqns;)i}*8CD_>` z*VWU_!`<1SB+sqP!yw$Nq9QS?G!or5pAv7&%0LC9(t@&57ZWdwAP?8f%19RrV`Bra zz#Pw{K*RD}3m<>?&@AsHZ9{E$4^J+$N~1g{V-x?vsPw2*=d98o?{aNNuhO94vZTPE z0!ND?PuEhna`#Y69}6yBU0sE$@bYrUL-Oa#p^xyn_V~|7qXF6r*+Ob`!i*hyn^f|PJOS!(?Xl)`YKCYf6RW#pD+Ag zu=h^S*w{r|Ere2!rG+=8w;E2@x3EZN{LR#-F5H#%IpoE+eFdwkzs|F@HkkHq&oi54%gSXkf Date: Sun, 8 Mar 2026 16:07:14 +0000 Subject: [PATCH 40/47] flake.lock: Update MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Flake lock file updates: • Updated input 'copyparty': 'github:9001/copyparty/ab8bd01' (2026-02-23) → 'github:9001/copyparty/981a7cd' (2026-03-08) • Updated input 'home-manager': 'github:nix-community/home-manager/9a4b494' (2026-02-23) → 'github:nix-community/home-manager/5be5d82' (2026-03-08) • Updated input 'nix-citizen': 'github:LovingMelody/nix-citizen/bebdc04' (2026-02-20) → 'github:LovingMelody/nix-citizen/73c8d04' (2026-03-06) • Updated input 'nix-citizen/flake-parts': 'github:hercules-ci/flake-parts/5792860' (2026-02-02) → 'github:hercules-ci/flake-parts/f20dc5d' (2026-03-01) • Updated input 'nix-citizen/nixpkgs': 'github:NixOS/nixpkgs/0182a36' (2026-02-17) → 'github:NixOS/nixpkgs/80bdc1e' (2026-03-04) • Updated input 'nix-citizen/treefmt-nix': 'github:numtide/treefmt-nix/337a4fe' (2026-02-04) → 'github:numtide/treefmt-nix/3710e0e' (2026-03-04) • Updated input 'nix-gaming': 'github:fufexan/nix-gaming/e70ef85' (2026-02-23) → 'github:fufexan/nix-gaming/d2b0b28' (2026-03-08) • Updated input 'nix-gaming/flake-parts': 'github:hercules-ci/flake-parts/5792860' (2026-02-02) → 'github:hercules-ci/flake-parts/f20dc5d' (2026-03-01) • Updated input 'nix-gaming/flake-parts/nixpkgs-lib': 'github:nix-community/nixpkgs.lib/7271616' (2026-02-01) → 'github:nix-community/nixpkgs.lib/c185c7a' (2026-03-01) • Added input 'nix-gaming/git-hooks': 'github:cachix/git-hooks.nix/8baab58' (2026-03-07) • Added input 'nix-gaming/git-hooks/flake-compat': 'github:NixOS/flake-compat/5edf11c' (2025-12-29) • Added input 'nix-gaming/git-hooks/gitignore': 'github:hercules-ci/gitignore.nix/637db32' (2024-02-28) • Added input 'nix-gaming/git-hooks/gitignore/nixpkgs': follows 'nix-gaming/git-hooks/nixpkgs' • Added input 'nix-gaming/git-hooks/nixpkgs': follows 'nix-gaming/nixpkgs' • Updated input 'nix-gaming/nixpkgs': 'github:NixOS/nixpkgs/d1c15b7' (2026-02-16) → 'github:NixOS/nixpkgs/917fec9' (2026-03-05) • Updated input 'nixpkgs': 'github:nixos/nixpkgs/0182a36' (2026-02-17) → 'github:nixos/nixpkgs/aca4d95' (2026-03-06) • Updated input 'nixvim': 'github:nix-community/nixvim/ed0424f' (2026-02-15) → 'github:nix-community/nixvim/21ae25e' (2026-03-01) • Updated input 'nur': 'github:nix-community/NUR/c5fa7a8' (2026-02-23) → 'github:nix-community/NUR/407db2f' (2026-03-08) --- flake.lock | 140 ++++++++++++++++++++++++++++++++++++++--------------- 1 file changed, 101 insertions(+), 39 deletions(-) diff --git a/flake.lock b/flake.lock index 42e5940..358544d 100644 --- a/flake.lock +++ b/flake.lock @@ -29,11 +29,11 @@ "nixpkgs": "nixpkgs" }, "locked": { - "lastModified": 1771834427, - "narHash": "sha256-B1j0ahVuxyZtpbFfy34gk2DjacimPIuzyzCPvDhvxI4=", + "lastModified": 1772965444, + "narHash": "sha256-VjcI4CozsowxGkZBzxQ6LYe49e9T1qfT1BzNrnc96y0=", "owner": "9001", "repo": "copyparty", - "rev": "ab8bd0178b26a0b6c6406f7bae835d13b16ef188", + "rev": "981a7cd9dda0acedbc7f53b2c44adb241c38cb84", "type": "github" }, "original": { @@ -64,6 +64,22 @@ "type": "github" } }, + "flake-compat": { + "flake": false, + "locked": { + "lastModified": 1767039857, + "narHash": "sha256-vNpUSpF5Nuw8xvDLj2KCwwksIbjua2LZCqhV1LNRDns=", + "owner": "NixOS", + "repo": "flake-compat", + "rev": "5edf11c44bc78a0d334f6334cdaf7d60d732daab", + "type": "github" + }, + "original": { + "owner": "NixOS", + "repo": "flake-compat", + "type": "github" + } + }, "flake-parts": { "inputs": { "nixpkgs-lib": [ @@ -72,11 +88,11 @@ ] }, "locked": { - "lastModified": 1769996383, - "narHash": "sha256-AnYjnFWgS49RlqX7LrC4uA+sCCDBj0Ry/WOJ5XWAsa0=", + "lastModified": 1772408722, + "narHash": "sha256-rHuJtdcOjK7rAHpHphUb1iCvgkU3GpfvicLMwwnfMT0=", "owner": "hercules-ci", "repo": "flake-parts", - "rev": "57928607ea566b5db3ad13af0e57e921e6b12381", + "rev": "f20dc5d9b8027381c474144ecabc9034d6a839a3", "type": "github" }, "original": { @@ -90,11 +106,11 @@ "nixpkgs-lib": "nixpkgs-lib" }, "locked": { - "lastModified": 1769996383, - "narHash": "sha256-AnYjnFWgS49RlqX7LrC4uA+sCCDBj0Ry/WOJ5XWAsa0=", + "lastModified": 1772408722, + "narHash": "sha256-rHuJtdcOjK7rAHpHphUb1iCvgkU3GpfvicLMwwnfMT0=", "owner": "hercules-ci", "repo": "flake-parts", - "rev": "57928607ea566b5db3ad13af0e57e921e6b12381", + "rev": "f20dc5d9b8027381c474144ecabc9034d6a839a3", "type": "github" }, "original": { @@ -160,6 +176,51 @@ "type": "github" } }, + "git-hooks": { + "inputs": { + "flake-compat": "flake-compat", + "gitignore": "gitignore", + "nixpkgs": [ + "nix-gaming", + "nixpkgs" + ] + }, + "locked": { + "lastModified": 1772893680, + "narHash": "sha256-JDqZMgxUTCq85ObSaFw0HhE+lvdOre1lx9iI6vYyOEs=", + "owner": "cachix", + "repo": "git-hooks.nix", + "rev": "8baab586afc9c9b57645a734c820e4ac0a604af9", + "type": "github" + }, + "original": { + "owner": "cachix", + "repo": "git-hooks.nix", + "type": "github" + } + }, + "gitignore": { + "inputs": { + "nixpkgs": [ + "nix-gaming", + "git-hooks", + "nixpkgs" + ] + }, + "locked": { + "lastModified": 1709087332, + "narHash": "sha256-HG2cCnktfHsKV0s4XW83gU3F57gaTljL9KNSuG6bnQs=", + "owner": "hercules-ci", + "repo": "gitignore.nix", + "rev": "637db329424fd7e46cf4185293b9cc8c88c95394", + "type": "github" + }, + "original": { + "owner": "hercules-ci", + "repo": "gitignore.nix", + "type": "github" + } + }, "home-manager": { "inputs": { "nixpkgs": [ @@ -188,11 +249,11 @@ ] }, "locked": { - "lastModified": 1771851181, - "narHash": "sha256-gFgE6mGUftwseV3DUENMb0k0EiHd739lZexPo5O/sdQ=", + "lastModified": 1772985285, + "narHash": "sha256-wEEmvfqJcl9J0wyMgMrj1TixOgInBW/6tLPhWGoZE3s=", "owner": "nix-community", "repo": "home-manager", - "rev": "9a4b494b1aa1b93d8edf167f46dc8e0c0011280c", + "rev": "5be5d8245cbc7bc0c09fbb5f38f23f223c543f85", "type": "github" }, "original": { @@ -213,11 +274,11 @@ "treefmt-nix": "treefmt-nix" }, "locked": { - "lastModified": 1771619527, - "narHash": "sha256-y/jb+wpBP0FGwoa8Jin7NAE0bGP2N6c8GlffAz4AgsA=", + "lastModified": 1772840927, + "narHash": "sha256-WdIuEJpH7eUP3ya8laJAYf71WilE4x7xetgMferL5Ko=", "owner": "LovingMelody", "repo": "nix-citizen", - "rev": "bebdc0400deffc548360bf900aa26e41af7ee4be", + "rev": "73c8d04ba69fb0bb5c4521c4b91a930a0ce283a5", "type": "github" }, "original": { @@ -229,14 +290,15 @@ "nix-gaming": { "inputs": { "flake-parts": "flake-parts_2", + "git-hooks": "git-hooks", "nixpkgs": "nixpkgs_3" }, "locked": { - "lastModified": 1771830876, - "narHash": "sha256-18G4VyxjjQ/fM7yjBIbHQEdJlodUd/J5KlG5RuFqRG0=", + "lastModified": 1772937574, + "narHash": "sha256-Yw1tP/ASebNYuW2GcYDTgWf2Mg9qcUYo6MTagXyeFCs=", "owner": "fufexan", "repo": "nix-gaming", - "rev": "e70ef8581abe41fc62428cd4a5da47405233b19d", + "rev": "d2b0b283deb24cdbb2750e658fa7001fee5ad586", "type": "github" }, "original": { @@ -283,11 +345,11 @@ }, "nixpkgs-lib": { "locked": { - "lastModified": 1769909678, - "narHash": "sha256-cBEymOf4/o3FD5AZnzC3J9hLbiZ+QDT/KDuyHXVJOpM=", + "lastModified": 1772328832, + "narHash": "sha256-e+/T/pmEkLP6BHhYjx6GmwP5ivonQQn0bJdH9YrRB+Q=", "owner": "nix-community", "repo": "nixpkgs.lib", - "rev": "72716169fe93074c333e8d0173151350670b824c", + "rev": "c185c7a5e5dd8f9add5b2f8ebeff00888b070742", "type": "github" }, "original": { @@ -298,11 +360,11 @@ }, "nixpkgs_2": { "locked": { - "lastModified": 1771369470, - "narHash": "sha256-0NBlEBKkN3lufyvFegY4TYv5mCNHbi5OmBDrzihbBMQ=", + "lastModified": 1772624091, + "narHash": "sha256-QKyJ0QGWBn6r0invrMAK8dmJoBYWoOWy7lN+UHzW1jc=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "0182a361324364ae3f436a63005877674cf45efb", + "rev": "80bdc1e5ce51f56b19791b52b2901187931f5353", "type": "github" }, "original": { @@ -314,11 +376,11 @@ }, "nixpkgs_3": { "locked": { - "lastModified": 1771207753, - "narHash": "sha256-b9uG8yN50DRQ6A7JdZBfzq718ryYrlmGgqkRm9OOwCE=", + "lastModified": 1772736753, + "narHash": "sha256-au/m3+EuBLoSzWUCb64a/MZq6QUtOV8oC0D9tY2scPQ=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "d1c15b7d5806069da59e819999d70e1cec0760bf", + "rev": "917fec990948658ef1ccd07cef2a1ef060786846", "type": "github" }, "original": { @@ -330,11 +392,11 @@ }, "nixpkgs_4": { "locked": { - "lastModified": 1771369470, - "narHash": "sha256-0NBlEBKkN3lufyvFegY4TYv5mCNHbi5OmBDrzihbBMQ=", + "lastModified": 1772773019, + "narHash": "sha256-E1bxHxNKfDoQUuvriG71+f+s/NT0qWkImXsYZNFFfCs=", "owner": "nixos", "repo": "nixpkgs", - "rev": "0182a361324364ae3f436a63005877674cf45efb", + "rev": "aca4d95fce4914b3892661bcb80b8087293536c6", "type": "github" }, "original": { @@ -353,11 +415,11 @@ "systems": "systems_3" }, "locked": { - "lastModified": 1771135771, - "narHash": "sha256-wyvBIhDuyCRyjB3yPg77qoyxrlgQtBR1rVW3c9knV3E=", + "lastModified": 1772402258, + "narHash": "sha256-3DmCFOdmbkFML1/G9gj8Wb+rCCZFPOQtNoMCpqOF8SA=", "owner": "nix-community", "repo": "nixvim", - "rev": "ed0424f0b08d303a7348f52f7850ad1b2704f9ba", + "rev": "21ae25e13b01d3b4cdc750b5f9e7bad68b150c10", "type": "github" }, "original": { @@ -374,11 +436,11 @@ ] }, "locked": { - "lastModified": 1771863000, - "narHash": "sha256-kQqPXgZkT7AGuVKEBh99IoawtxnyLg38HJFYNwWQxNk=", + "lastModified": 1772985100, + "narHash": "sha256-EXFbJvUZrElVq839MnMgJEDnyXWn84Zx+MiHcZiCQmg=", "owner": "nix-community", "repo": "NUR", - "rev": "c5fa7a8e1f27f220045e3c7d9a1188a9254ac804", + "rev": "407db2f6f4ba94992815f872ffce9a9d99ccc13c", "type": "github" }, "original": { @@ -452,11 +514,11 @@ ] }, "locked": { - "lastModified": 1770228511, - "narHash": "sha256-wQ6NJSuFqAEmIg2VMnLdCnUc0b7vslUohqqGGD+Fyxk=", + "lastModified": 1772660329, + "narHash": "sha256-IjU1FxYqm+VDe5qIOxoW+pISBlGvVApRjiw/Y/ttJzY=", "owner": "numtide", "repo": "treefmt-nix", - "rev": "337a4fe074be1042a35086f15481d763b8ddc0e7", + "rev": "3710e0e1218041bbad640352a0440114b1e10428", "type": "github" }, "original": { From a2d43c4dd917e01a249817ab51ad264432896a49 Mon Sep 17 00:00:00 2001 From: Will Holdsworth Date: Mon, 9 Mar 2026 14:03:47 +1100 Subject: [PATCH 41/47] feat(borgbackup): replace borgmatic --- hosts/server/configuration.nix | 2 +- modules/nixos/bundles/server.nix | 5 ++- modules/nixos/features/borgbackup.nix | 57 +++++++++++++++++++++++++++ modules/nixos/features/borgmatic.nix | 4 -- modules/nixos/features/firefly.nix | 7 ---- modules/nixos/features/immich.nix | 9 ----- modules/nixos/features/mealie.nix | 21 +++++----- modules/nixos/features/miniflux.nix | 9 ----- modules/nixos/features/ntfy-sh.nix | 9 ++--- modules/nixos/features/paperless.nix | 11 ------ modules/nixos/features/prowlarr.nix | 13 +++++- modules/nixos/features/syncthing.nix | 10 +++-- modules/templates/web-feature.nix | 15 ++----- secrets/borgbackup-offsite.age | 9 +++++ secrets/borgbackup-onsite.age | 9 +++++ secrets/borgmatic-pg.age | 9 ----- secrets/borgmatic.age | 9 ----- secrets/secrets.nix | 5 +-- 18 files changed, 117 insertions(+), 96 deletions(-) create mode 100644 modules/nixos/features/borgbackup.nix create mode 100644 secrets/borgbackup-offsite.age create mode 100644 secrets/borgbackup-onsite.age delete mode 100644 secrets/borgmatic-pg.age delete mode 100644 secrets/borgmatic.age diff --git a/hosts/server/configuration.nix b/hosts/server/configuration.nix index a331fc7..9593963 100644 --- a/hosts/server/configuration.nix +++ b/hosts/server/configuration.nix @@ -15,7 +15,7 @@ ] ++ (util.toImports ../../modules/nixos/features [ # keep-sorted start - "borgmatic" + "borgbackup" "intel-gpu" # keep-sorted end ]) diff --git a/modules/nixos/bundles/server.nix b/modules/nixos/bundles/server.nix index 1aa12e4..7a9f017 100644 --- a/modules/nixos/bundles/server.nix +++ b/modules/nixos/bundles/server.nix @@ -34,5 +34,8 @@ # keep-sorted end ]; - services.borgmatic.settings.source_directories = [ "/srv" ]; + services.borgbackup.jobs = { + onsite.paths = [ "/srv" ]; + offsite.paths = [ "/srv" ]; + }; } diff --git a/modules/nixos/features/borgbackup.nix b/modules/nixos/features/borgbackup.nix new file mode 100644 index 0000000..c30799a --- /dev/null +++ b/modules/nixos/features/borgbackup.nix @@ -0,0 +1,57 @@ +{ + config, + pkgs, + ... +}: +let + jobConfig = { + compression = "auto,zlib"; + doInit = false; + preHook = '' + /run/wrappers/bin/sudo -u postgres ${pkgs.postgresql}/bin/pg_dumpall > /srv/backup/database/postgres/dump.sql + ''; + postHook = '' + rm /srv/backup/database/postgres/dump.sql + ''; + prune.keep = { + daily = 7; + weekly = 4; + monthly = 6; + yearly = 1; + }; + readWritePaths = [ + "/srv/backup" + ]; + startAt = "*-*-* 03:00:00"; + extraCreateArgs = [ "-v" ]; + }; +in +{ + services.borgbackup = { + jobs = { + onsite = { + encryption = { + passCommand = "cat ${config.age.secrets.borgbackup-onsite.path}"; + mode = "repokey-blake2"; + }; + removableDevice = true; + repo = "/mnt/external/backup/take2"; + } + // jobConfig; + offsite = { + encryption = { + passCommand = "cat ${config.age.secrets.borgbackup-offsite.path}"; + mode = "repokey-blake2"; + }; + environment.BORG_RSH = "ssh -i /home/srv/.ssh/id_ed25519"; + repo = "ssh://vuc5c3xq@vuc5c3xq.repo.borgbase.com/./repo"; + } + // jobConfig; + }; + }; + + age.secrets = { + borgbackup-onsite.file = ../../../secrets/borgbackup-onsite.age; + borgbackup-offsite.file = ../../../secrets/borgbackup-offsite.age; + }; +} diff --git a/modules/nixos/features/borgmatic.nix b/modules/nixos/features/borgmatic.nix index 6628f8e..112eeda 100644 --- a/modules/nixos/features/borgmatic.nix +++ b/modules/nixos/features/borgmatic.nix @@ -42,12 +42,10 @@ { path = "/mnt/external/backup/repo"; label = "onsite"; - # encryption = "repokey-blake2"; } { path = "ssh://vuc5c3xq@vuc5c3xq.repo.borgbase.com/./repo"; label = "offsite"; - # encryption = "repokey-blake2"; } ]; retries = 3; @@ -75,8 +73,6 @@ "borgmatic-pg:${config.age.secrets.borgmatic-pg.path}" ]; - # onsite drive - # secrets age.secrets = { "borgmatic".file = ../../../secrets/borgmatic.age; diff --git a/modules/nixos/features/firefly.nix b/modules/nixos/features/firefly.nix index 92ee22d..c32df14 100644 --- a/modules/nixos/features/firefly.nix +++ b/modules/nixos/features/firefly.nix @@ -24,13 +24,6 @@ in }; }; - borgmatic.settings.sqlite_databases = [ - { - name = "firefly"; - path = "/srv/firefly/storage/database/database.sqlite"; - } - ]; - caddy.virtualHosts."firefly.fi33.buzz".extraConfig = '' root * ${config.services.firefly-iii.package}/public php_fastcgi unix//${config.services.phpfpm.pools.firefly-iii.socket} diff --git a/modules/nixos/features/immich.nix b/modules/nixos/features/immich.nix index 0908fd1..ce89f21 100644 --- a/modules/nixos/features/immich.nix +++ b/modules/nixos/features/immich.nix @@ -27,15 +27,6 @@ in } ]; - borgmatic.settings.postgresql_databases = [ - { - name = "immich"; - hostname = "localhost"; - username = "root"; - password = "{credential systemd borgmatic-pg}"; - } - ]; - caddy.virtualHosts.${hostname}.extraConfig = '' reverse_proxy localhost:${toString port} tls ${certloc}/cert.pem ${certloc}/key.pem { diff --git a/modules/nixos/features/mealie.nix b/modules/nixos/features/mealie.nix index 368ee09..324c241 100644 --- a/modules/nixos/features/mealie.nix +++ b/modules/nixos/features/mealie.nix @@ -1,5 +1,5 @@ { - config, + pkgs, ... }: let @@ -34,17 +34,14 @@ in } ]; - # borgmatic.settings = { - # source_directories = [ ]; - # postgresql_databases = [ - # { - # name = "mealie"; - # hostname = "localhost"; - # username = "root"; - # password = "{credential systemd borgmatic-pg}"; - # } - # ]; - # }; + borgbackup.jobs = { + onsite = { + paths = [ "/var/lib/mealie" ]; + }; + offsite = { + paths = [ "/var/lib/mealie" ]; + }; + }; caddy.virtualHosts.${hostname}.extraConfig = '' reverse_proxy localhost:${toString port} diff --git a/modules/nixos/features/miniflux.nix b/modules/nixos/features/miniflux.nix index fcd6526..094bdc2 100644 --- a/modules/nixos/features/miniflux.nix +++ b/modules/nixos/features/miniflux.nix @@ -34,15 +34,6 @@ in } ]; - borgmatic.settings.postgresql_databases = [ - { - name = "miniflux"; - hostname = "localhost"; - username = "root"; - password = "{credential systemd borgmatic-pg}"; - } - ]; - caddy.virtualHosts.${hostname}.extraConfig = '' reverse_proxy localhost:${toString port} tls ${certloc}/cert.pem ${certloc}/key.pem { diff --git a/modules/nixos/features/ntfy-sh.nix b/modules/nixos/features/ntfy-sh.nix index de396ff..0d101eb 100644 --- a/modules/nixos/features/ntfy-sh.nix +++ b/modules/nixos/features/ntfy-sh.nix @@ -20,11 +20,9 @@ in auth-default-access = "deny-all"; auth-users = [ "Debit3885:$2a$12$ZeFimzdifNFSmf0W2oi.vuZfsqae75md9nhC/Q2BcKMyvDO8T.uEK:admin" - "borgmatic:$2a$12$ZeFimzdifNFSmf0W2oi.vuZfsqae75md9nhC/Q2BcKMyvDO8T.uEK:user" "gatus:$2a$12$OswG3sB8oDaB.KpawKM3P.78dID.Tj/0y5qeVD5BE6EH5bpGKe.na:user" ]; auth-access = [ - "borgmatic:backups:wo" "gatus:services:wo" ]; }; @@ -44,10 +42,9 @@ in } ]; - borgmatic.settings = { - source_directories = [ - "/var/lib/ntfy-sh/user.db" - ]; + borgbackup.jobs = { + onsite.paths = [ "/var/lib/ntfy-sh" ]; + offsite.paths = [ "/var/lib/ntfy-sh" ]; }; caddy.virtualHosts.${hostname}.extraConfig = '' diff --git a/modules/nixos/features/paperless.nix b/modules/nixos/features/paperless.nix index 13cdd59..5be0efb 100644 --- a/modules/nixos/features/paperless.nix +++ b/modules/nixos/features/paperless.nix @@ -36,17 +36,6 @@ in } ]; - borgmatic.settings = { - postgresql_databases = [ - { - name = "paperless"; - hostname = "localhost"; - username = "root"; - password = "{credential systemd borgmatic-pg}"; - } - ]; - }; - caddy.virtualHosts.${hostname}.extraConfig = '' reverse_proxy localhost:${toString port} tls ${certloc}/cert.pem ${certloc}/key.pem { diff --git a/modules/nixos/features/prowlarr.nix b/modules/nixos/features/prowlarr.nix index a6126c9..050cc56 100644 --- a/modules/nixos/features/prowlarr.nix +++ b/modules/nixos/features/prowlarr.nix @@ -1,3 +1,7 @@ +{ + pkgs, + ... +}: let port = 5009; certloc = "/var/lib/acme/fi33.buzz"; @@ -28,7 +32,14 @@ in } ]; - borgmatic.settings.source_directories = [ "/var/lib/prowlarr" ]; + borgbackup.jobs = { + onsite = { + paths = [ "/var/lib/prowlarr" ]; + }; + offsite = { + paths = [ "/var/lib/prowlarr" ]; + }; + }; caddy.virtualHosts.${hostname}.extraConfig = '' reverse_proxy localhost:${toString port} diff --git a/modules/nixos/features/syncthing.nix b/modules/nixos/features/syncthing.nix index 07976f2..0f74271 100644 --- a/modules/nixos/features/syncthing.nix +++ b/modules/nixos/features/syncthing.nix @@ -73,12 +73,16 @@ in } ]; - borgmatic.settings = + borgbackup.jobs = if userName == "srv" then { - source_directories = [ + onsite.paths = [ "/home/srv/.config/syncthing" - "/home/srv/Sync" + "/home/srv/Sync/" + ]; + offsite.paths = [ + "/home/srv/.config/syncthing" + "/home/srv/Sync/" ]; } else diff --git a/modules/templates/web-feature.nix b/modules/templates/web-feature.nix index 8e8978c..29f389c 100644 --- a/modules/templates/web-feature.nix +++ b/modules/templates/web-feature.nix @@ -25,17 +25,10 @@ in } ]; - # borgmatic.settings = { - # source_directories = [ ]; - # postgresql_databases = [ - # { - # name = "feature"; - # hostname = "localhost"; - # username = "root"; - # password = "{credential systemd borgmatic-pg}"; - # } - # ]; - # }; + borgbackup.jobs = { + onsite.paths = [ "" ]; + offsite.paths = [ "" ]; + }; caddy.virtualHosts.${hostname}.extraConfig = '' reverse_proxy localhost:${toString port} diff --git a/secrets/borgbackup-offsite.age b/secrets/borgbackup-offsite.age new file mode 100644 index 0000000..e1809a9 --- /dev/null +++ b/secrets/borgbackup-offsite.age @@ -0,0 +1,9 @@ +age-encryption.org/v1 +-> ssh-ed25519 qLT+DQ NuEGxxieL0H7mUFKft+fuH1jd0XFDf3xESLrVcb9GAg +KxJcj9P/+cr63TmqEIPwfykz07luqe9VLRLzs3CWx9Y +-> ssh-ed25519 NanIwQ HRHMV4jFn7vJVHd6gFqcOTA14VI6+QaITXMpZbeGoDg +aANuHXv4O1KKwPCClatphXgWDFnsCy/AoQJT0+D560o +-> ssh-ed25519 LtK9yQ NHLTdStEdoXSGKxoz4/gR+oT9bLq8wwz4XRHS2rd9Xo +lndB74KBkWrfNuZyuQufl35lQIPNqbppLfSZRerIDaA +--- dro8ECdWcFtleQv5nffX/Wh97w/FGXQZwSIjPE9WIX8 +8R#;rpEhȾW8-. `OW']kJdC .T)N_kq_=ϰ \ No newline at end of file diff --git a/secrets/borgbackup-onsite.age b/secrets/borgbackup-onsite.age new file mode 100644 index 0000000..86c240f --- /dev/null +++ b/secrets/borgbackup-onsite.age @@ -0,0 +1,9 @@ +age-encryption.org/v1 +-> ssh-ed25519 qLT+DQ 3UW3CErZDv6UkjXJZldymqYmmJoQcbSjVX4IUX7KRn8 +pnbegKpKiNW8QY9rD7pD1mrhOSdD+cxUxcNKtLM5uOQ +-> ssh-ed25519 NanIwQ qAl2RheS1lTOU60xeodc4/WvyzYRGiWR+55QvsVE5H0 +j/UoLITpRpMF2t0J/Y0zL0kAgz5nJ02I/nwUp+pEowg +-> ssh-ed25519 LtK9yQ sbldK/F2u6MMgIR8F6c5ZFkMesq+GHKRmlqt3n6L2yw +GTSzhGfj+Shg+MQ3hde12pKi6zfeGNw6RXwSAoGyaak +--- 6WmdTjpwgwb6/1o06i5xtvnOQcvNztwpBmvH/9wYbmo +K^ѭUb|:m@*ޱg1>)qs,n{ DdvɜEuH ssh-ed25519 qLT+DQ C3A3TKOyIWzbW8JupvhTmLKetnr+0uzkPq985NA0DCs -ahrHVR7WadjOfOXBWOqBAf9L0UdCNeD0Ynk6sKDF7WM --> ssh-ed25519 7+xRyQ evZ6zSS3olbORnqiCnEAL68D1FNPgg2oBoJSaquLAAA -BYoo9AVOHsRsTbXkRQdS/7WN25vBuJOAb0YfnSY+hGQ --> ssh-ed25519 LtK9yQ jLIdKPvVhPsRIJevWLmads3P2hM29c0B143OWoINzlY -ziCUQ1TtB6BUgbNZ/zFXoaOtpxyrbKobsTvXo/dSpSA ---- Q6JHS+5vuYLIqyIb6x3qCbIJvsjk2++ovL1zkVGs69o -쇽NM1WByM.-|Gl]8Z,(5豲P!pmpEa;(tq!KU4m \ No newline at end of file diff --git a/secrets/borgmatic.age b/secrets/borgmatic.age deleted file mode 100644 index fca1c53..0000000 --- a/secrets/borgmatic.age +++ /dev/null @@ -1,9 +0,0 @@ -age-encryption.org/v1 --> ssh-ed25519 qLT+DQ zfLZc8A30KjoMrhUSl4OgTp+Yg11fmVjDioxtIYMqDU -URhJwUCElaJcSd+k5wBQAXvdC/68ZcCA5WbHGAJTYfY --> ssh-ed25519 7+xRyQ mrGrjW0fQIRNMDdw4Hoc9N/xAEm1P0IFukShfeVdKE8 -yLUmj7LBfHQ/i4buBB57ktNUOnHpoC8NYTQUnK5e5y4 --> ssh-ed25519 LtK9yQ THjOsSIr/DQTulFlwd4r5DYb73VQ0vWgyDHkfJV3NR0 -Dl8FwK1WciiEMs5MdrFcUIOFGmlbZf3APOWzLN6rkOE ---- 3mjYPT9APy0F5NNbbCIQhzZ0XjKBtB9YGGS3t37eoRU -T^vU{>[dhPC6Z|K|~lݝbDt΄]1P$10 A$ \ No newline at end of file diff --git a/secrets/secrets.nix b/secrets/secrets.nix index ac60688..2bd9a15 100644 --- a/secrets/secrets.nix +++ b/secrets/secrets.nix @@ -15,9 +15,8 @@ let in { # keep-sorted start - "borgmatic-ntfy.age".publicKeys = users; - "borgmatic-pg.age".publicKeys = users; - "borgmatic.age".publicKeys = users; + "borgbackup-offsite.age".publicKeys = users; + "borgbackup-onsite.age".publicKeys = users; "copyparty.age".publicKeys = users; "gatus.age".publicKeys = users; "git_signing_key.age".publicKeys = users; From 6328d80bdf648ea73e5122704efab1681532ea52 Mon Sep 17 00:00:00 2001 From: Will Holdsworth Date: Mon, 9 Mar 2026 14:36:45 +1100 Subject: [PATCH 42/47] fix(lazygit): allow rewording signed commits --- modules/home-manager/features/lazygit.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/home-manager/features/lazygit.nix b/modules/home-manager/features/lazygit.nix index e4938bf..6672936 100644 --- a/modules/home-manager/features/lazygit.nix +++ b/modules/home-manager/features/lazygit.nix @@ -5,6 +5,7 @@ programs.lazygit = { enable = true; settings = { + git.overrideGpg = true; log = { localBranchSortOrder = "recency"; remoteBranchSortOrder = "recency"; From f98b6fe4a73f8e45bc53f4fbaa11d679186a0e0f Mon Sep 17 00:00:00 2001 From: Will Holdsworth Date: Thu, 12 Mar 2026 19:01:05 +1100 Subject: [PATCH 43/47] fix(syncthing): alternative config should be empty set, not null --- modules/nixos/features/syncthing.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/nixos/features/syncthing.nix b/modules/nixos/features/syncthing.nix index 0f74271..0b141f7 100644 --- a/modules/nixos/features/syncthing.nix +++ b/modules/nixos/features/syncthing.nix @@ -86,7 +86,7 @@ in ]; } else - null; + { }; caddy.virtualHosts.${hostname}.extraConfig = '' reverse_proxy http://localhost:${toString port} From 5acabc97450eb8f118887fee7e4e694a27b09462 Mon Sep 17 00:00:00 2001 From: Will Holdsworth Date: Thu, 12 Mar 2026 19:48:50 +1100 Subject: [PATCH 44/47] feat(librewolf): install --- modules/home-manager/bundles/gui.nix | 1 + modules/home-manager/features/librewolf.nix | 255 ++++++++++++++++++++ 2 files changed, 256 insertions(+) create mode 100644 modules/home-manager/features/librewolf.nix diff --git a/modules/home-manager/bundles/gui.nix b/modules/home-manager/bundles/gui.nix index de6e9a8..300f80e 100644 --- a/modules/home-manager/bundles/gui.nix +++ b/modules/home-manager/bundles/gui.nix @@ -7,6 +7,7 @@ # keep-sorted start "alacritty" "firefox" + "librewolf" "obsidian" # "zen-browser" # keep-sorted end diff --git a/modules/home-manager/features/librewolf.nix b/modules/home-manager/features/librewolf.nix new file mode 100644 index 0000000..31a34b2 --- /dev/null +++ b/modules/home-manager/features/librewolf.nix @@ -0,0 +1,255 @@ +{ + pkgs, + ... +}: +{ + programs.librewolf = { + enable = true; + languagePacks = [ "en-GB" ]; + profiles.will = { + settings = { + # keep-sorted start + "browser.aboutwelcome.enabled" = false; + "browser.bookmarks.addedImportButton" = false; + "browser.bookmarks.restore_default_bookmarks" = false; + "browser.download.useDownloadDir" = true; + "browser.newtabpage.enabled" = false; + "browser.safebrowsing.downloads.enabled" = false; + "browser.safebrowsing.malware.enabled" = false; + "browser.safebrowsing.phishing.enabled" = false; + "browser.safebrowsing.remote.block_potentially_unwanted" = false; + "browser.safebrowsing.remote.block_uncommon" = false; + "browser.search.suggest.enabled" = false; + "browser.startup.homepage" = "chrome://browser/content/blanktab.html"; + "browser.startup.page" = 3; + "browser.tabs.groups.smart.userEnabled" = false; + "browser.tabs.warnOnClose" = true; + "browser.tabs.warnOnOpen" = false; + "browser.toolbars.bookmarks.visibility" = "never"; + "browser.urlbar.suggest.searches" = false; + "datareporting.healthreport.uploadEnabled" = false; + "datareporting.usage.uploadEnabled" = false; + "dom.security.https_only_mode" = true; + "dom.security.https_only_mode_ever_enabled" = true; + "extensions.formautofill.creditCards.enabled" = false; + "general.autoScroll" = true; + "identity.fxaccounts.enabled" = true; + "intl.locale.requested" = "en-GB"; + "network.trr.mode" = 3; + "network.trr.uri" = "https://firefox.dns.nextdns.io/"; + "privacy.annotate_channels.strict_list.enabled" = true; + "privacy.bounceTrackingProtection.mode" = 1; + "privacy.fingerprintingProtection" = true; + "privacy.globalprivacycontrol.enabled" = true; + "privacy.globalprivacycontrol.was_ever_enabled" = true; + "privacy.history.custom" = false; + "privacy.query_stripping.enabled " = true; + "privacy.query_stripping.enabled.pbmode" = true; + "privacy.sanitize.sanitizeOnShutdown" = false; + "privacy.trackingprotection.allow_list.baseline.enabled" = true; + "privacy.trackingprotection.allow_list.convenience.enabled" = false; + "privacy.trackingprotection.consentmanager.skip.pbmode.enabled" = false; + "privacy.trackingprotection.emailtracking.enabled" = true; + "privacy.trackingprotection.enabled" = true; + "privacy.trackingprotection.socialtracking.enabled" = true; + "services.sync.engine.passwords" = false; + "sidebar.main.tools" = "syncedtabs,history,bookmarks"; + "sidebar.new-sidebar.has-used" = true; + "sidebar.position_start" = false; + "sidebar.revamp" = true; + "sidebar.verticalTabs" = true; + "sidebar.verticalTabs.dragToPinPromo.dismissed" = true; + "signon.autofillForms" = false; + "signon.firefoxRelay.feature" = "disabled"; + "signon.generation.enabled" = false; + "signon.management.page.breach-alerts.enabled" = false; + "signon.rememberSignons" = false; + "toolkit.telemetry.reportingpolicy.firstRun" = false; + # keep-sorted end + }; + search = { + default = "ddg"; + privateDefault = "ddg"; + engines = { }; + order = [ ]; + force = true; + }; + extensions = { + force = true; + packages = with pkgs.nur.repos.rycee.firefox-addons; [ + # keep-sorted start sticky_comments=no + # detect-cloudflare + bitwarden + dearrow + nixpkgs-pr-tracker + react-devtools + return-youtube-dislikes + sponsorblock + ublock-origin + # keep-sorted end + ]; + settings = { + # keep-sorted start block=yes + # sponsorblock + "sponsorBlocker@ajay.app".settings = { + hideSegmentCreationInPopup = false; + autoSkipOnMusicVideosUpdate = true; + changeChapterColor = true; + autoSkipOnMusicVideos = false; + hideVideoPlayerControls = false; + useVirtualTime = true; + categoryPillColors = { }; + payments = { + chaptersAllowed = false; + freeAccess = false; + lastCheck = 0; + lastFreeCheck = 0; + licenseKey = null; + }; + allowExpirements = true; + allowScrollingToEdit = true; + audioNotificationOnSkip = false; + autoHideInfoButton = true; + categoryPillUpdate = true; + chapterCategoryAdded = true; + checkForUnlistedVideos = false; + cleanPopup = false; + darkMode = true; + deArrowInstalled = true; + defaultCategory = "chooseACategory"; + disableSkipping = false; + donateClicked = 0; + dontShowNotice = false; + forceChannelCheck = false; + fullVideoLabelsOnThumbnails = true; + fullVideoSegments = true; + hideDeleteButtonPlayerControls = false; + hideDiscordLaunches = 0; + hideDiscordLink = false; + hideInfoButtonPlayerControls = false; + hideSkipButtonPlayerControls = false; + hideUploadButtonPlayerControls = false; + categorySelections = [ + { + name = "sponsor"; + option = 2; + } + { + name = "poi_highlight"; + option = 1; + } + { + name = "exclusive_access"; + option = 0; + } + { + name = "chapter"; + option = 0; + } + { + name = "selfpromo"; + option = 1; + } + { + name = "interaction"; + option = 1; + } + { + name = "intro"; + option = 1; + } + { + name = "outro"; + option = 1; + } + { + name = "preview"; + option = 1; + } + { + name = "filler"; + option = 1; + } + { + name = "music_offtopic"; + option = 2; + } + { + name = "hook"; + option = 1; + } + ]; + manualSkipOnFullVideo = false; + minDuration = 0; + isVip = false; + muteSegments = false; + noticeVisibilityMode = 3; + renderSegmentsAsChapters = false; + scrollToEditTimeUpdate = false; + serverAddress = "https://sponsor.ajay.app"; + showAutogeneratedChapters = false; + showCategoryGuidelines = true; + showCategoryWithoutPermission = false; + showChapterInfoMessage = true; + showDeArrowInSettings = true; + showDeArrowPromotion = true; + showDonationLink = false; + showNewFeaturePopups = false; + showSegmentFailedToFetchWarning = true; + showSegmentNameInChapterBar = true; + showTimeWithSkips = true; + showUpcomingNotice = false; + showUpsells = false; + minutesSaved = 67.630516; + shownDeArrowPromotion = false; + showZoomToFillError2 = false; + skipNoticeDuration = 4; + sponsorTimesContributed = 0; + testingServer = false; + trackDownvotes = false; + trackDownvotesInPrivate = false; + trackViewCount = false; + trackViewCountInPrivate = false; + ytInfoPermissionGranted = false; + skipNonMusicOnlyOnYoutubeMusic = false; + hookUpdate = false; + permissions = { + sponsor = true; + selfpromo = true; + exclusive_access = true; + interaction = true; + intro = true; + outro = true; + preview = true; + hook = true; + music_offtopic = true; + filler = true; + poi_highlight = true; + chapter = false; + }; + segmentListDefaultTab = 0; + prideTheme = false; + }; + # ublock-origin + "uBlock0@raymondhill.net".settings = { + advancedUserEnabled = true; + selectedFilterLists = [ + "user-filters" + "ublock-filters" + "ublock-badware" + "ublock-privacy" + "ublock-quick-fixes" + "ublock-unbreak" + "easylist" + "easyprivacy" + "adguard-spyware-url" + "urlhaus-1" + "plowe-0" + ]; + }; + # keep-sorted end + }; + }; + }; + }; +} From d7196bb7461dffd22be56018e13e93fec87728d8 Mon Sep 17 00:00:00 2001 From: Will Holdsworth Date: Thu, 12 Mar 2026 19:49:00 +1100 Subject: [PATCH 45/47] feat(firefox): update config based on librewolf config --- modules/home-manager/features/firefox.nix | 281 +++++++++++----------- 1 file changed, 143 insertions(+), 138 deletions(-) diff --git a/modules/home-manager/features/firefox.nix b/modules/home-manager/features/firefox.nix index 4231d89..b0c16b3 100644 --- a/modules/home-manager/features/firefox.nix +++ b/modules/home-manager/features/firefox.nix @@ -12,6 +12,7 @@ "browser.aboutwelcome.enabled" = false; "browser.bookmarks.addedImportButton" = false; "browser.bookmarks.restore_default_bookmarks" = false; + "browser.download.useDownloadDir" = true; "browser.newtabpage.enabled" = false; "browser.safebrowsing.downloads.enabled" = false; "browser.safebrowsing.malware.enabled" = false; @@ -22,6 +23,8 @@ "browser.startup.homepage" = "chrome://browser/content/blanktab.html"; "browser.startup.page" = 3; "browser.tabs.groups.smart.userEnabled" = false; + "browser.tabs.warnOnClose" = true; + "browser.tabs.warnOnOpen" = false; "browser.toolbars.bookmarks.visibility" = "never"; "browser.urlbar.suggest.searches" = false; "datareporting.healthreport.uploadEnabled" = false; @@ -35,18 +38,20 @@ "network.trr.uri" = "https://firefox.dns.nextdns.io/"; "privacy.annotate_channels.strict_list.enabled" = true; "privacy.bounceTrackingProtection.mode" = 1; - "privacy.clearOnShutdown_v2.formdata" = true; "privacy.fingerprintingProtection" = true; "privacy.globalprivacycontrol.enabled" = true; "privacy.globalprivacycontrol.was_ever_enabled" = true; + "privacy.history.custom" = false; "privacy.query_stripping.enabled " = true; "privacy.query_stripping.enabled.pbmode" = true; + "privacy.sanitize.sanitizeOnShutdown" = false; "privacy.trackingprotection.allow_list.baseline.enabled" = true; "privacy.trackingprotection.allow_list.convenience.enabled" = false; "privacy.trackingprotection.consentmanager.skip.pbmode.enabled" = false; "privacy.trackingprotection.emailtracking.enabled" = true; "privacy.trackingprotection.enabled" = true; "privacy.trackingprotection.socialtracking.enabled" = true; + "services.sync.engine.passwords" = false; "sidebar.main.tools" = "syncedtabs,history,bookmarks"; "sidebar.new-sidebar.has-used" = true; "sidebar.position_start" = false; @@ -86,144 +91,144 @@ # keep-sorted start block=yes # sponsorblock "sponsorBlocker@ajay.app".settings = { - hideSegmentCreationInPopup = false; - autoSkipOnMusicVideosUpdate = true; - changeChapterColor = true; - autoSkipOnMusicVideos = false; - hideVideoPlayerControls = false; - useVirtualTime = true; - categoryPillColors = { }; - payments = { - chaptersAllowed = false; - freeAccess = false; - lastCheck = 0; - lastFreeCheck = 0; - licenseKey = null; - }; - allowExpirements = true; - allowScrollingToEdit = true; - audioNotificationOnSkip = false; - autoHideInfoButton = true; - categoryPillUpdate = true; - chapterCategoryAdded = true; - checkForUnlistedVideos = false; - cleanPopup = false; - darkMode = true; - deArrowInstalled = true; - defaultCategory = "chooseACategory"; - disableSkipping = false; - donateClicked = 0; - dontShowNotice = false; - forceChannelCheck = false; - fullVideoLabelsOnThumbnails = true; - fullVideoSegments = true; - hideDeleteButtonPlayerControls = false; - hideDiscordLaunches = 0; - hideDiscordLink = false; - hideInfoButtonPlayerControls = false; - hideSkipButtonPlayerControls = false; - hideUploadButtonPlayerControls = false; - categorySelections = [ - { - name = "sponsor"; - option = 2; - } - { - name = "poi_highlight"; - option = 1; - } - { - name = "exclusive_access"; - option = 0; - } - { - name = "chapter"; - option = 0; - } - { - name = "selfpromo"; - option = 1; - } - { - name = "interaction"; - option = 1; - } - { - name = "intro"; - option = 1; - } - { - name = "outro"; - option = 1; - } - { - name = "preview"; - option = 1; - } - { - name = "filler"; - option = 1; - } - { - name = "music_offtopic"; - option = 2; - } - { - name = "hook"; - option = 1; - } - ]; - manualSkipOnFullVideo = false; - minDuration = 0; - isVip = false; - muteSegments = false; - noticeVisibilityMode = 3; - renderSegmentsAsChapters = false; - scrollToEditTimeUpdate = false; - serverAddress = "https://sponsor.ajay.app"; - showAutogeneratedChapters = false; - showCategoryGuidelines = true; - showCategoryWithoutPermission = false; - showChapterInfoMessage = true; - showDeArrowInSettings = true; - showDeArrowPromotion = true; - showDonationLink = false; - showNewFeaturePopups = false; - showSegmentFailedToFetchWarning = true; - showSegmentNameInChapterBar = true; - showTimeWithSkips = true; - showUpcomingNotice = false; - showUpsells = false; - minutesSaved = 67.630516; - shownDeArrowPromotion = false; - showZoomToFillError2 = false; - skipNoticeDuration = 4; - sponsorTimesContributed = 0; - testingServer = false; - trackDownvotes = false; - trackDownvotesInPrivate = false; - trackViewCount = false; - trackViewCountInPrivate = false; - ytInfoPermissionGranted = false; - skipNonMusicOnlyOnYoutubeMusic = false; - hookUpdate = false; - permissions = { - sponsor = true; - selfpromo = true; - exclusive_access = true; - interaction = true; - intro = true; - outro = true; - preview = true; - hook = true; - music_offtopic = true; - filler = true; - poi_highlight = true; - chapter = false; - }; - segmentListDefaultTab = 0; - prideTheme = false; + hideSegmentCreationInPopup = false; + autoSkipOnMusicVideosUpdate = true; + changeChapterColor = true; + autoSkipOnMusicVideos = false; + hideVideoPlayerControls = false; + useVirtualTime = true; + categoryPillColors = { }; + payments = { + chaptersAllowed = false; + freeAccess = false; + lastCheck = 0; + lastFreeCheck = 0; + licenseKey = null; }; + allowExpirements = true; + allowScrollingToEdit = true; + audioNotificationOnSkip = false; + autoHideInfoButton = true; + categoryPillUpdate = true; + chapterCategoryAdded = true; + checkForUnlistedVideos = false; + cleanPopup = false; + darkMode = true; + deArrowInstalled = true; + defaultCategory = "chooseACategory"; + disableSkipping = false; + donateClicked = 0; + dontShowNotice = false; + forceChannelCheck = false; + fullVideoLabelsOnThumbnails = true; + fullVideoSegments = true; + hideDeleteButtonPlayerControls = false; + hideDiscordLaunches = 0; + hideDiscordLink = false; + hideInfoButtonPlayerControls = false; + hideSkipButtonPlayerControls = false; + hideUploadButtonPlayerControls = false; + categorySelections = [ + { + name = "sponsor"; + option = 2; + } + { + name = "poi_highlight"; + option = 1; + } + { + name = "exclusive_access"; + option = 0; + } + { + name = "chapter"; + option = 0; + } + { + name = "selfpromo"; + option = 1; + } + { + name = "interaction"; + option = 1; + } + { + name = "intro"; + option = 1; + } + { + name = "outro"; + option = 1; + } + { + name = "preview"; + option = 1; + } + { + name = "filler"; + option = 1; + } + { + name = "music_offtopic"; + option = 2; + } + { + name = "hook"; + option = 1; + } + ]; + manualSkipOnFullVideo = false; + minDuration = 0; + isVip = false; + muteSegments = false; + noticeVisibilityMode = 3; + renderSegmentsAsChapters = false; + scrollToEditTimeUpdate = false; + serverAddress = "https://sponsor.ajay.app"; + showAutogeneratedChapters = false; + showCategoryGuidelines = true; + showCategoryWithoutPermission = false; + showChapterInfoMessage = true; + showDeArrowInSettings = true; + showDeArrowPromotion = true; + showDonationLink = false; + showNewFeaturePopups = false; + showSegmentFailedToFetchWarning = true; + showSegmentNameInChapterBar = true; + showTimeWithSkips = true; + showUpcomingNotice = false; + showUpsells = false; + minutesSaved = 67.630516; + shownDeArrowPromotion = false; + showZoomToFillError2 = false; + skipNoticeDuration = 4; + sponsorTimesContributed = 0; + testingServer = false; + trackDownvotes = false; + trackDownvotesInPrivate = false; + trackViewCount = false; + trackViewCountInPrivate = false; + ytInfoPermissionGranted = false; + skipNonMusicOnlyOnYoutubeMusic = false; + hookUpdate = false; + permissions = { + sponsor = true; + selfpromo = true; + exclusive_access = true; + interaction = true; + intro = true; + outro = true; + preview = true; + hook = true; + music_offtopic = true; + filler = true; + poi_highlight = true; + chapter = false; + }; + segmentListDefaultTab = 0; + prideTheme = false; + }; # ublock-origin "uBlock0@raymondhill.net".settings = { advancedUserEnabled = true; From 7483af690a5364861e19c731430373bb14f4781c Mon Sep 17 00:00:00 2001 From: Will Holdsworth Date: Thu, 12 Mar 2026 19:49:14 +1100 Subject: [PATCH 46/47] feat(firefox): remove for now in favour of librewolf --- modules/home-manager/bundles/gui.nix | 1 - 1 file changed, 1 deletion(-) diff --git a/modules/home-manager/bundles/gui.nix b/modules/home-manager/bundles/gui.nix index 300f80e..0d4ec42 100644 --- a/modules/home-manager/bundles/gui.nix +++ b/modules/home-manager/bundles/gui.nix @@ -6,7 +6,6 @@ imports = util.toImports ../features [ # keep-sorted start "alacritty" - "firefox" "librewolf" "obsidian" # "zen-browser" From 81bf6d1c45cc9eb1d0fcdc63d529c209a944851f Mon Sep 17 00:00:00 2001 From: Will Holdsworth Date: Thu, 12 Mar 2026 20:02:32 +1100 Subject: [PATCH 47/47] feat(tailscale): disable for now, ssh works without --- modules/nixos/default.nix | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/modules/nixos/default.nix b/modules/nixos/default.nix index c1243e6..bba0af7 100644 --- a/modules/nixos/default.nix +++ b/modules/nixos/default.nix @@ -16,7 +16,6 @@ "nixvim" "syncthing" "systemd-boot" - "tailscale" # keep-sorted end ]; @@ -61,7 +60,7 @@ ticker # stock ticker tldr # cheat sheets tmpmail # temporary email address - topydo # todo.txt helper tool + # topydo # todo.txt helper tool tt # typing test wtfutil # terminal homepage xh # curl