flocon/config/home-manager/services/gammastep.nix

18 lines
339 B
Nix
Raw Normal View History

2024-12-27 22:15:38 +00:00
{lib, ...}: {
services.gammastep = {
enable = true;
tray = true;
provider = "geoclue2";
};
systemd.user.services.gammastep = {
Unit = {
PartOf = lib.mkForce [];
After = lib.mkForce ["graphical-session.target"];
};
Service = {
Slice = lib.mkForce "background-graphical.slice";
};
};
}