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