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