12 lines
183 B
Nix
12 lines
183 B
Nix
|
{ config, ... }: {
|
||
|
networking = {
|
||
|
useNetworkd = true;
|
||
|
|
||
|
# Easy debugging.
|
||
|
firewall.enable = false;
|
||
|
};
|
||
|
|
||
|
# Faster boot.
|
||
|
systemd.network.wait-online.enable = false;
|
||
|
}
|