nixos-config/system/wifi.nix
Christoph Heiss 6955ea6a96
machines: Add trek, my Framework laptop
.. and with it, all the infrastructure for desktop systems; as well as
laptop-specific things like WiFi and TLP.

Signed-off-by: Christoph Heiss <christoph@c8h4.io>
2023-04-08 18:33:17 +02:00

8 lines
167 B
Nix

{ pkgs, ... }:
{
environment.systemPackages = [ pkgs.iw ];
networking.networkmanager.enable = true;
users.users.christoph.extraGroups = [ "networkmanager" ];
}