From cd489f0f9862a9d6048b5876d521a0ff7108a0a4 Mon Sep 17 00:00:00 2001 From: Danilo Reyes Date: Fri, 18 Apr 2025 22:21:07 -0600 Subject: [PATCH] capitalization --- modules/servers/homepage/service-widgets.nix | 2 +- modules/servers/nextcloud.nix | 2 +- modules/servers/ryot.nix | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/modules/servers/homepage/service-widgets.nix b/modules/servers/homepage/service-widgets.nix index f204127..129a059 100644 --- a/modules/servers/homepage/service-widgets.nix +++ b/modules/servers/homepage/service-widgets.nix @@ -6,7 +6,7 @@ view = "monthly"; maxEvents = 10; showTime = true; - inherit (config.my) timezone; + inherit (config.my) timeZone; integrations = let createIntegration = name: color: { diff --git a/modules/servers/nextcloud.nix b/modules/servers/nextcloud.nix index 9be67c7..1b62a55 100644 --- a/modules/servers/nextcloud.nix +++ b/modules/servers/nextcloud.nix @@ -253,7 +253,7 @@ in autoStart = true; image = "radialapps/go-vod"; environment = { - TZ = config.my.timezone; + TZ = config.my.timeZone; NEXTCLOUD_HOST = "https://${config.services.nextcloud.hostName}"; NVIDIA_VISIBLE_DEVICES = "all"; }; diff --git a/modules/servers/ryot.nix b/modules/servers/ryot.nix index 364a5e5..00575cd 100644 --- a/modules/servers/ryot.nix +++ b/modules/servers/ryot.nix @@ -13,7 +13,7 @@ in environmentFiles = [ config.sops.secrets.ryot.path ]; environment = { RUST_LOG = "ryot=debug,sea_orm=debug"; - TZ = config.my.timezone; + TZ = config.my.timeZone; DATABASE_URL = "postgres:///ryot?host=${config.my.postgresSocket}"; FRONTEND_INSECURE_COOKIES = "true"; };