network-manager: Add networkmanagerapplet

This includes nm-connection-editor, which is needed to set up WPA2
enterprise connections.
neomutt
Simon Bruder 2021-10-07 12:35:30 +02:00
parent 171695dde4
commit d44db0d505
Signed by: simon
GPG Key ID: 8D3C82F9F309F8EC
1 changed files with 5 additions and 1 deletions

View File

@ -1,5 +1,9 @@
{ config, lib, ... }:
{ config, lib, pkgs, ... }:
lib.mkIf config.sbruder.gui.enable {
networking.networkmanager.enable = true;
environment.systemPackages = with pkgs; [
networkmanagerapplet
];
}