diff --git a/modules/services.nix b/modules/services.nix index f14e574..e06c3f9 100644 --- a/modules/services.nix +++ b/modules/services.nix @@ -18,6 +18,12 @@ # hostname = 0.0.0.0 # ''; # }; + services.redshift = { + enable = true; + temperature.day = 5500; + temperature.night = 3000; + }; + services.earlyoom = { enable = config.devices.${config.device}.ram < 12; freeMemThreshold = 5; diff --git a/modules/workspace/locale.nix b/modules/workspace/locale.nix index 8760ea1..6e14f5d 100644 --- a/modules/workspace/locale.nix +++ b/modules/workspace/locale.nix @@ -6,6 +6,13 @@ }; time.timeZone = "Europe/Volgograd"; + + location = { + provider = "manual"; + latitude = 48.78583; + longitude = 44.77973; + }; + home-manager.users.alukard.home.language = let en = "en_GB.UTF-8"; ru = "ru_RU.UTF-8";