mirror of
https://github.com/nix-community/home-manager
synced 2024-11-04 18:29:45 +01:00
4f70f49cec
This target is for systemd units that require a system tray to be running. This also fixes taffybar.service: previously, systemd would consider it to be active (running) before it was actually ready to accept tray icons.
37 lines
883 B
Nix
37 lines
883 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
let
|
|
|
|
cfg = config.services.network-manager-applet;
|
|
|
|
in {
|
|
meta.maintainers = [ maintainers.rycee ];
|
|
|
|
options = {
|
|
services.network-manager-applet = {
|
|
enable = mkEnableOption "the Network Manager applet";
|
|
};
|
|
};
|
|
|
|
config = mkIf cfg.enable {
|
|
systemd.user.services.network-manager-applet = {
|
|
Unit = {
|
|
Description = "Network Manager applet";
|
|
Requires = [ "tray.target" ];
|
|
After = [ "graphical-session-pre.target" "tray.target" ];
|
|
PartOf = [ "graphical-session.target" ];
|
|
};
|
|
|
|
Install = { WantedBy = [ "graphical-session.target" ]; };
|
|
|
|
Service = {
|
|
ExecStart = toString
|
|
([ "${pkgs.networkmanagerapplet}/bin/nm-applet" "--sm-disable" ]
|
|
++ optional config.xsession.preferStatusNotifierItems
|
|
"--indicator");
|
|
};
|
|
};
|
|
};
|
|
}
|