mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-23 17:11:56 -05:00
16 lines
283 B
Nix
16 lines
283 B
Nix
|
{
|
||
|
config,
|
||
|
lib,
|
||
|
...
|
||
|
}: let
|
||
|
cfg = config.ar.home;
|
||
|
in {
|
||
|
config = lib.mkIf (cfg.services.gammastep.enable || cfg.desktop.redShift) {
|
||
|
services.gammastep = {
|
||
|
enable = true;
|
||
|
latitude = lib.mkDefault "33.74";
|
||
|
longitude = lib.mkDefault "-84.38";
|
||
|
};
|
||
|
};
|
||
|
}
|