1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-30 10:28:31 +02:00
home-manager/modules/services/pasystray.nix

31 lines
749 B
Nix
Raw Normal View History

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
};
};
}