forked from natto1784/dotfiles
Added NixOS configs
This commit is contained in:
13
networking.nix
Normal file
13
networking.nix
Normal file
@@ -0,0 +1,13 @@
|
||||
{lib, config, pkgs, ... }:
|
||||
|
||||
{
|
||||
networking = {
|
||||
hostName = "nixchod";
|
||||
wireless.enable = true; # Enables wireless support via wpa_supplicant.
|
||||
useDHCP = false;
|
||||
interfaces = {
|
||||
enp7s0.useDHCP = true;
|
||||
wlp0s20f3.useDHCP = true;
|
||||
};
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user