diff options
Diffstat (limited to 'gnu/system/linux-container.scm')
-rw-r--r-- | gnu/system/linux-container.scm | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gnu/system/linux-container.scm b/gnu/system/linux-container.scm index e9be2c9d8a..23298638b7 100644 --- a/gnu/system/linux-container.scm +++ b/gnu/system/linux-container.scm @@ -40,6 +40,7 @@ #:use-module (gnu services shepherd) #:use-module (gnu system) #:use-module (gnu system file-systems) + #:use-module (gnu packages linux) #:export (system-container containerized-operating-system container-script @@ -152,6 +153,7 @@ containerized OS. EXTRA-FILE-SYSTEMS is a list of file systems to add to OS." (define os-with-base-essential-services (operating-system (inherit os) + (kernel %dummy-linux-kernel-for-container) (swap-devices '()) ; disable swap (services (append services-to-add |