1
0
Fork 0
mirror of https://github.com/nix-community/home-manager synced 2024-09-20 21:37:30 +02:00

pasystray: add paprefs and pavucontrol

This enables the "volume control" and "control local sound server"
menu options.

Fixes #461
This commit is contained in:
Robert Helgesson 2018-11-30 23:43:26 +01:00
parent 40b279e3a3
commit 6d2f16a7ae
No known key found for this signature in database
GPG key ID: 36BDAA14C2797E89

View file

@ -24,6 +24,11 @@ with lib;
};
Service = {
Environment =
let
toolPaths = makeBinPath [ pkgs.paprefs pkgs.pavucontrol ];
in
[ "PATH=${toolPaths}" ];
ExecStart = "${pkgs.pasystray}/bin/pasystray";
};
};