capitalization

This commit is contained in:
Danilo Reyes 2025-04-18 22:21:07 -06:00
parent 690893bff0
commit cd489f0f98
3 changed files with 3 additions and 3 deletions

View File

@ -6,7 +6,7 @@
view = "monthly"; view = "monthly";
maxEvents = 10; maxEvents = 10;
showTime = true; showTime = true;
inherit (config.my) timezone; inherit (config.my) timeZone;
integrations = integrations =
let let
createIntegration = name: color: { createIntegration = name: color: {

View File

@ -253,7 +253,7 @@ in
autoStart = true; autoStart = true;
image = "radialapps/go-vod"; image = "radialapps/go-vod";
environment = { environment = {
TZ = config.my.timezone; TZ = config.my.timeZone;
NEXTCLOUD_HOST = "https://${config.services.nextcloud.hostName}"; NEXTCLOUD_HOST = "https://${config.services.nextcloud.hostName}";
NVIDIA_VISIBLE_DEVICES = "all"; NVIDIA_VISIBLE_DEVICES = "all";
}; };

View File

@ -13,7 +13,7 @@ in
environmentFiles = [ config.sops.secrets.ryot.path ]; environmentFiles = [ config.sops.secrets.ryot.path ];
environment = { environment = {
RUST_LOG = "ryot=debug,sea_orm=debug"; RUST_LOG = "ryot=debug,sea_orm=debug";
TZ = config.my.timezone; TZ = config.my.timeZone;
DATABASE_URL = "postgres:///ryot?host=${config.my.postgresSocket}"; DATABASE_URL = "postgres:///ryot?host=${config.my.postgresSocket}";
FRONTEND_INSECURE_COOKIES = "true"; FRONTEND_INSECURE_COOKIES = "true";
}; };