Files
nixos/system/network.nix
T
biscuit 36222bdb63 upd
2025-05-20 21:36:34 -05:00

7 lines
302 B
Nix

{pkgs, hostname, ...}: {
networking.hostName = "${hostname}";
# Pick only one of the below networking options.
# networking.wireless.enable = true; # Enables wireless support via wpa_supplicant.
networking.networkmanager.enable = true; # Easiest to use and most distros use this by default.
}