2018-08-21 15:52:45 +02:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
|
|
|
{
|
|
|
|
meta.maintainers = [ maintainers.pltanton ];
|
|
|
|
|
|
|
|
options = {
|
2020-02-02 00:39:17 +01:00
|
|
|
services.pasystray = { enable = mkEnableOption "PulseAudio system tray"; };
|
2018-08-21 15:52:45 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
config = mkIf config.services.pasystray.enable {
|
|
|
|
systemd.user.services.pasystray = {
|
2020-02-02 00:39:17 +01:00
|
|
|
Unit = {
|
|
|
|
Description = "PulseAudio system tray";
|
|
|
|
After = [ "graphical-session-pre.target" ];
|
|
|
|
PartOf = [ "graphical-session.target" ];
|
|
|
|
};
|
2018-08-21 15:52:45 +02:00
|
|
|
|
2020-02-02 00:39:17 +01:00
|
|
|
Install = { WantedBy = [ "graphical-session.target" ]; };
|
2018-08-21 15:52:45 +02:00
|
|
|
|
2020-02-02 00:39:17 +01:00
|
|
|
Service = {
|
|
|
|
Environment =
|
|
|
|
let toolPaths = makeBinPath [ pkgs.paprefs pkgs.pavucontrol ];
|
|
|
|
in [ "PATH=${toolPaths}" ];
|
|
|
|
ExecStart = "${pkgs.pasystray}/bin/pasystray";
|
|
|
|
};
|
2018-08-21 15:52:45 +02:00
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|