25 lines
326 B
Nix
Executable File
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;
|
|
}
|
|
];
|
|
};
|
|
};
|
|
|
|
}
|