nixos-config/users/simon/modules/sway/gammastep.nix

17 lines
312 B
Nix
Raw Normal View History

# SPDX-FileCopyrightText: 2020-2021 Simon Bruder <simon@sbruder.de>
#
# SPDX-License-Identifier: AGPL-3.0-or-later
2021-07-25 08:36:19 +02:00
{ nixosConfig, ... }:
{
services.gammastep = {
enable = true;
2021-07-25 08:36:19 +02:00
inherit (nixosConfig.location) latitude longitude;
temperature = {
day = 6500;
night = 3500;
};
};
}