mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 15:11:25 +00:00
b3662053b3
more readable imho
15 lines
431 B
Nix
15 lines
431 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
options.programs.nm-applet.enable = lib.mkEnableOption "nm-applet";
|
|
|
|
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";
|
|
};
|
|
};
|
|
}
|