home-manager/modules/services/pasystray.nix

36 lines
910 B
Nix
Raw Normal View History

2018-08-21 13:52:45 +00:00
{ config, lib, pkgs, ... }:
with lib;
{
meta.maintainers = [ hm.maintainers.pltanton ];
2018-08-21 13:52:45 +00:00
options = {
2020-02-01 23:39:17 +00:00
services.pasystray = { enable = mkEnableOption "PulseAudio system tray"; };
2018-08-21 13:52:45 +00:00
};
config = mkIf config.services.pasystray.enable {
2022-04-24 14:25:54 +00:00
assertions = [
(hm.assertions.assertPlatform "services.pasystray" pkgs platforms.linux)
];
2018-08-21 13:52:45 +00:00
systemd.user.services.pasystray = {
2020-02-01 23:39:17 +00:00
Unit = {
Description = "PulseAudio system tray";
Requires = [ "tray.target" ];
After = [ "graphical-session-pre.target" "tray.target" ];
2020-02-01 23:39:17 +00:00
PartOf = [ "graphical-session.target" ];
};
2018-08-21 13:52:45 +00:00
2020-02-01 23:39:17 +00:00
Install = { WantedBy = [ "graphical-session.target" ]; };
2018-08-21 13:52:45 +00:00
2020-02-01 23:39:17 +00:00
Service = {
Environment =
let toolPaths = makeBinPath [ pkgs.paprefs pkgs.pavucontrol ];
in [ "PATH=${toolPaths}" ];
ExecStart = "${pkgs.pasystray}/bin/pasystray";
};
2018-08-21 13:52:45 +00:00
};
};
}