0d7a2f67df
As of version 1.18.0 Appindicator support is available in the official network-manager-applet package. To use nm-applet in an Appindicator environment the applet should be started with the following command: $ nm-applet --indicator Without this option it does appear in the Enlightenment panel systray, for instance.
32 lines
878 B
Nix
32 lines
878 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
meta = {
|
|
maintainers = lib.teams.freedesktop.members;
|
|
};
|
|
|
|
options.programs.nm-applet = {
|
|
enable = lib.mkEnableOption "nm-applet";
|
|
|
|
indicator = lib.mkOption {
|
|
type = lib.types.bool;
|
|
default = true;
|
|
description = ''
|
|
Whether to use indicator instead of status icon.
|
|
It is needed for Appindicator environments, like Enlightenment.
|
|
'';
|
|
};
|
|
};
|
|
|
|
config = lib.mkIf config.programs.nm-applet.enable {
|
|
systemd.user.services.nm-applet = {
|
|
description = "Network manager applet";
|
|
wantedBy = [ "graphical-session.target" ];
|
|
partOf = [ "graphical-session.target" ];
|
|
serviceConfig.ExecStart = "${pkgs.networkmanagerapplet}/bin/nm-applet ${lib.optionalString config.programs.nm-applet.indicator "--indicator"}";
|
|
};
|
|
|
|
services.dbus.packages = [ pkgs.gcr ];
|
|
};
|
|
}
|