modularized timezone
This commit is contained in:
parent
c6f9d06f85
commit
e7883be1f1
2
base.nix
2
base.nix
@ -31,7 +31,7 @@
|
|||||||
users.jawz = import ./home-manager.nix;
|
users.jawz = import ./home-manager.nix;
|
||||||
};
|
};
|
||||||
time = {
|
time = {
|
||||||
timeZone = "America/Mexico_City";
|
timeZone = config.my.timezone;
|
||||||
hardwareClockInLocalTime = true;
|
hardwareClockInLocalTime = true;
|
||||||
};
|
};
|
||||||
i18n = {
|
i18n = {
|
||||||
|
|||||||
@ -6,7 +6,7 @@
|
|||||||
view = "monthly";
|
view = "monthly";
|
||||||
maxEvents = 10;
|
maxEvents = 10;
|
||||||
showTime = true;
|
showTime = true;
|
||||||
timezone = "America/Mexico_City";
|
timezone = config.my.timezone;
|
||||||
integrations =
|
integrations =
|
||||||
let
|
let
|
||||||
createIntegration = name: color: {
|
createIntegration = name: color: {
|
||||||
|
|||||||
@ -253,7 +253,7 @@ in
|
|||||||
autoStart = true;
|
autoStart = true;
|
||||||
image = "radialapps/go-vod";
|
image = "radialapps/go-vod";
|
||||||
environment = {
|
environment = {
|
||||||
TZ = "America/Mexico_City";
|
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";
|
||||||
};
|
};
|
||||||
|
|||||||
@ -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 = "America/Mexico_City";
|
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";
|
||||||
};
|
};
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user