initial setup
This commit is contained in:
8
root/base/networking/default.nix
Normal file
8
root/base/networking/default.nix
Normal file
@ -0,0 +1,8 @@
|
||||
# Simple networking settings. Uses DHCP.
|
||||
{ lib, hostName, ... }:
|
||||
{
|
||||
networking.hostName = hostName;
|
||||
networking.useDHCP = lib.mkDefault true;
|
||||
networking.networkmanager.enable = true;
|
||||
networking.interfaces.enp11s0.wakeOnLan.enable = true;
|
||||
}
|
Reference in New Issue
Block a user