summary refs log tree commit diff stats
path: root/modules/hardware/network-manager.nix
blob: b85b8f41ca39994c42c180e078367d65dfce865f (plain)
1
2
3
4
5
6
7
8
9
10
{ config, pkgs, ... }:

{ networking.networkmanager = {
    enable = true;
  };

  environment.systemPackages = with pkgs; [
    networkmanagerapplet
  ];
}