26 lines
635 B
Nix
26 lines
635 B
Nix
{ ... }:
|
|
{
|
|
networking = {
|
|
hostName = "aramis";
|
|
domain = "nodomain.local"; # FIXME: gotta fix domain handling
|
|
|
|
# The global useDHCP flag is deprecated, therefore explicitly set to false here.
|
|
# Per-interface useDHCP will be mandatory in the future, so this generated config
|
|
# replicates the default behaviour.
|
|
useDHCP = false;
|
|
|
|
interfaces = {
|
|
enp0s31f6.useDHCP = true;
|
|
wlp0s20f3.useDHCP = true;
|
|
};
|
|
};
|
|
|
|
my.hardware.networking = {
|
|
# Which interface is used to connect to the internet
|
|
externalInterface = "enp0s3";
|
|
|
|
# Enable WiFi integration
|
|
wireless.enable = true;
|
|
};
|
|
}
|