diff --git a/nix/home-manager/profiles/qtile-desktop.nix b/nix/home-manager/profiles/qtile-desktop.nix index 10f3806..8017ea3 100644 --- a/nix/home-manager/profiles/qtile-desktop.nix +++ b/nix/home-manager/profiles/qtile-desktop.nix @@ -1,6 +1,8 @@ { pkgs, ... }: let + passwords = import ../../variables/passwords.crypt.nix; + inherit (import ../lib.nix { }) mkSimpleTrayService; audio = pkgs.writeShellScript "audio" '' @@ -279,8 +281,7 @@ in { cbatticon.enable = true; redshift = { enable = true; - longitude = "9.1698"; - latitude = "47.6691"; + inherit (passwords.location.stefan) longitude latitude; temperature = { day = 6700; night = 3700; diff --git a/nix/os/devices/steveej-t14/system.nix b/nix/os/devices/steveej-t14/system.nix index b414df9..9035bbf 100644 --- a/nix/os/devices/steveej-t14/system.nix +++ b/nix/os/devices/steveej-t14/system.nix @@ -1,6 +1,9 @@ { pkgs, lib, config, ... }: -let keys = import ../../../variables/keys.nix; +let + keys = import ../../../variables/keys.nix; + passwords = import ../../../variables/passwords.crypt.nix; + in { nix = { binaryCaches = @@ -74,5 +77,7 @@ in { Option "OffTime" "0" ''; + time.timeZone = lib.mkForce passwords.timeZone.stefan; + hardware.ledger.enable = true; } diff --git a/nix/os/profiles/common/system.nix b/nix/os/profiles/common/system.nix index 35532ad..8e0ba35 100644 --- a/nix/os/profiles/common/system.nix +++ b/nix/os/profiles/common/system.nix @@ -34,7 +34,7 @@ console.font = "lat9w-16"; i18n = { defaultLocale = "en_US.UTF-8"; }; - time.timeZone = "Europe/Berlin"; + time.timeZone = "Etc/UTC"; services.gpm.enable = true; services.packagekit.enable = true; diff --git a/nix/variables/passwords.crypt.nix b/nix/variables/passwords.crypt.nix index 4e27704..d430bd0 100644 Binary files a/nix/variables/passwords.crypt.nix and b/nix/variables/passwords.crypt.nix differ