mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 04:02:55 +03:00
ef176dcf7e
conversions were done using https://github.com/pennae/nix-doc-munge using (probably) rev f34e145 running nix-doc-munge nixos/**/*.nix nix-doc-munge --import nixos/**/*.nix the tool ensures that only changes that could affect the generated manual *but don't* are committed, other changes require manual review and are discarded.
32 lines
900 B
Nix
32 lines
900 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
meta = {
|
|
maintainers = lib.teams.freedesktop.members;
|
|
};
|
|
|
|
options.programs.nm-applet = {
|
|
enable = lib.mkEnableOption (lib.mdDoc "nm-applet");
|
|
|
|
indicator = lib.mkOption {
|
|
type = lib.types.bool;
|
|
default = true;
|
|
description = lib.mdDoc ''
|
|
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 ];
|
|
};
|
|
}
|