From fc39df8c9747f4d81df7deb489aae89355aac875 Mon Sep 17 00:00:00 2001 From: Mikhail Klementev Date: Thu, 5 Sep 2019 16:03:08 +0000 Subject: [PATCH] Preload kernel module for docker interfaces --- configuration.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/configuration.nix b/configuration.nix index 1d0b45b..82def49 100644 --- a/configuration.nix +++ b/configuration.nix @@ -23,6 +23,7 @@ in { time.timeZone = "UTC"; boot.kernelPackages = unstable.linuxPackages_latest; + boot.kernelModules = [ "veth" ]; boot.blacklistedKernelModules = [ "nouveau" ]; boot.earlyVconsoleSetup = true;