8 lines
158 B
Nix
8 lines
158 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
networking.useNetworkd = true;
|
|
systemd.network.wait-online.enable = false;
|
|
|
|
networking.networkmanager.enable = true;
|
|
}
|