Files
dotfiles/networking.nix
2021-03-31 05:41:15 +05:30

14 lines
264 B
Nix

{lib, config, pkgs, ... }:
{
networking = {
hostName = "nixchod";
wireless.enable = true; # Enables wireless support via wpa_supplicant.
useDHCP = false;
interfaces = {
enp7s0.useDHCP = true;
wlp0s20f3.useDHCP = true;
};
};
}