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