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