nix-dotfiles/snippets/gammastep.nix
vorboyvo b7261af069 Moved programs/ to snippets/ and made necessary modifications in config.
Edited clifmrc to make 'x' command work somewhat.
2024-11-29 16:31:36 -05:00

17 lines
276 B
Nix

{...}:
let
montreal = {
# robert-bourassa/rené-lévesque
latitude = 45.4987;
longitude = -73.5703;
};
in
{
services.gammastep = {
enable = true;
temperature.day = 6500;
temperature.night = 4000;
inherit (montreal) latitude longitude;
};
}