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

49 lines
1.2 KiB
Nix
Raw Normal View History

2018-08-21 15:52:45 +02:00
{ config, lib, pkgs, ... }:
with lib;
let cfg = config.services.pasystray;
in {
meta.maintainers = [ hm.maintainers.pltanton ];
2018-08-21 15:52:45 +02:00
options = {
services.pasystray = {
enable = mkEnableOption "PulseAudio system tray";
extraOptions = mkOption {
type = types.listOf types.str;
default = [ ];
description = ''
Extra command-line arguments to pass to {command}`pasystray`.
'';
};
};
2018-08-21 15:52:45 +02:00
};
config = mkIf cfg.enable {
2022-04-24 16:25:54 +02:00
assertions = [
(hm.assertions.assertPlatform "services.pasystray" pkgs platforms.linux)
];
2018-08-21 15:52:45 +02:00
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 = escapeShellArgs
([ "${pkgs.pasystray}/bin/pasystray" ] ++ cfg.extraOptions);
2020-02-02 00:39:17 +01:00
};
2018-08-21 15:52:45 +02:00
};
};
}