mirror of
https://github.com/sadan4/dotfiles.git
synced 2025-01-19 03:33:30 -05:00
13 lines
279 B
Nix
13 lines
279 B
Nix
{ pkgs, config }: {
|
|
polychromatic = {
|
|
Unit = {
|
|
Description = "razer chroma applet/daemon";
|
|
};
|
|
Install = {
|
|
WantedBy = [ "default.target" ];
|
|
};
|
|
Service = {
|
|
ExecStart = "${pkgs.polychromatic}/bin/polychromatic-tray-applet";
|
|
};
|
|
};
|
|
}
|