7 lines
100 B
Nix
7 lines
100 B
Nix
|
|
{ config, ... }: {
|
||
|
|
networking = {
|
||
|
|
useDHCP = false;
|
||
|
|
interfaces.ens3.useDHCP = true;
|
||
|
|
};
|
||
|
|
}
|