nix-dotfiles/programs/gammastep.nix
vorboyvo 71d6a60108 Added clifm, zathura, libertinus font, typst.
Moved gammastep to its own file to be imported.
2024-11-12 11:46:24 -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;
};
}