From e293f31a4599a0ab4275b8e18851626c10131dcb Mon Sep 17 00:00:00 2001 From: RGBCube Date: Tue, 16 Jan 2024 14:24:39 +0300 Subject: [PATCH] Set background color to #000000 in nextcloud --- hosts/cube/nextcloud/default.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/hosts/cube/nextcloud/default.nix b/hosts/cube/nextcloud/default.nix index 6ae2077..b2f5526 100644 --- a/hosts/cube/nextcloud/default.nix +++ b/hosts/cube/nextcloud/default.nix @@ -25,6 +25,10 @@ in serverSystemConfiguration { script = lib.mkAfter '' nextcloud-occ theming:config name "RGBCube's Depot" nextcloud-occ theming:config slogan "RGBCube's storage of insignificant data." + + nextcloud-occ theming:config color "#000000" + nextcloud-occ theming:config background backgroundColor + nextcloud-occ theming:config logo ${./icon.gif} ''; };