Files
nixos-thinkpad/desktop/home/hyprsunset/default.nix
T
2026-04-19 17:12:27 +02:00

25 lines
326 B
Nix
Executable File

{ config, lib, ... }:
{
services.hyprsunset = {
enable = true;
settings = {
max-gamma = 150;
profile = [
{
time = "7:00";
identity = true;
}
{
time = "22:00";
temperature = 6000;
gamma = 0.75;
}
];
};
};
}