fix wait-online for probook
This commit is contained in:
parent
be51200cc5
commit
083d2646f5
1 changed files with 10 additions and 1 deletions
|
@ -18,7 +18,16 @@
|
||||||
efi.canTouchEfiVariables = true;
|
efi.canTouchEfiVariables = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
networking.networkmanager.enable = true;
|
networking = {
|
||||||
|
interfaces.enp2s0.useDHCP = lib.mkDefault true;
|
||||||
|
networkmanager = {
|
||||||
|
enable = true;
|
||||||
|
unmanaged = [
|
||||||
|
"enp2s0"
|
||||||
|
];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
systemd.network.wait-online.anyInterface = true;
|
||||||
|
|
||||||
nixpkgs.config.allowUnfree = true;
|
nixpkgs.config.allowUnfree = true;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue