From 74caec48d2e3de8ea30255af8ce60602e99c8cf4 Mon Sep 17 00:00:00 2001 From: Bruno BELANYI Date: Wed, 29 Jan 2025 18:10:28 +0000 Subject: [PATCH 1/2] nixos/homebox: disable GitHub checks Doesn't make sense to have it enabled by default on NixOS. --- nixos/modules/services/web-apps/homebox.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/nixos/modules/services/web-apps/homebox.nix b/nixos/modules/services/web-apps/homebox.nix index 9b72a45e7d34..e3a4c0faa8e9 100644 --- a/nixos/modules/services/web-apps/homebox.nix +++ b/nixos/modules/services/web-apps/homebox.nix @@ -24,6 +24,7 @@ in HBOX_STORAGE_DATA = "/var/lib/homebox/data"; HBOX_STORAGE_SQLITE_URL = "/var/lib/homebox/data/homebox.db?_pragma=busy_timeout=999&_pragma=journal_mode=WAL&_fk=1"; HBOX_OPTIONS_ALLOW_REGISTRATION = "false"; + HBOX_OPTIONS_CHECK_GITHUB_RELEASE = "false"; HBOX_MODE = "production"; ''; description = '' @@ -43,6 +44,7 @@ in HBOX_STORAGE_DATA = mkDefault "/var/lib/homebox/data"; HBOX_STORAGE_SQLITE_URL = mkDefault "/var/lib/homebox/data/homebox.db?_pragma=busy_timeout=999&_pragma=journal_mode=WAL&_fk=1"; HBOX_OPTIONS_ALLOW_REGISTRATION = mkDefault "false"; + HBOX_OPTIONS_CHECK_GITHUB_RELEASE = mkDefault "false"; HBOX_MODE = mkDefault "production"; }; systemd.services.homebox = { From aaa268822097465e98bb093707e630c7999617f7 Mon Sep 17 00:00:00 2001 From: Bruno BELANYI Date: Wed, 29 Jan 2025 18:11:26 +0000 Subject: [PATCH 2/2] nixos/homebox: fix link to documentation --- nixos/modules/services/web-apps/homebox.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/modules/services/web-apps/homebox.nix b/nixos/modules/services/web-apps/homebox.nix index e3a4c0faa8e9..a6f4a58d0e57 100644 --- a/nixos/modules/services/web-apps/homebox.nix +++ b/nixos/modules/services/web-apps/homebox.nix @@ -29,7 +29,7 @@ in ''; description = '' The homebox configuration as Environment variables. For definitions and available options see the upstream - [documentation](https://homebox.software/en/quick-start.html#env-variables-configuration). + [documentation](https://homebox.software/en/configure-homebox.html). ''; }; };