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

32 lines
804 B
Nix
Raw Normal View History

2018-08-21 15:52:45 +02:00
{ config, lib, pkgs, ... }:
with lib;
{
meta.maintainers = [ hm.maintainers.pltanton ];
2018-08-21 15:52:45 +02:00
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";
Requires = [ "tray.target" ];
After = [ "graphical-session-pre.target" "tray.target" ];
2020-02-02 00:39:17 +01:00
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
};
};
}