summary refs log tree commit diff
path: root/lib/systems/platforms.nix
diff options
context:
space:
mode:
authorBen Wolsieffer <benwolsieffer@gmail.com>2018-05-27 12:19:39 -0400
committerTuomas Tynkkynen <tuomas.tynkkynen@iki.fi>2018-06-12 20:44:23 +0300
commit7cb01d58b22a163e2075c567ef6f470d5d5a2f99 (patch)
treef00fdff31c375ddf892ae2781b3d902460a76842 /lib/systems/platforms.nix
parenta964d29f49ed02a269f025c3b4b424d58fbb30e5 (diff)
downloadnixpkgs-7cb01d58b22a163e2075c567ef6f470d5d5a2f99.tar
nixpkgs-7cb01d58b22a163e2075c567ef6f470d5d5a2f99.tar.gz
nixpkgs-7cb01d58b22a163e2075c567ef6f470d5d5a2f99.tar.bz2
nixpkgs-7cb01d58b22a163e2075c567ef6f470d5d5a2f99.tar.lz
nixpkgs-7cb01d58b22a163e2075c567ef6f470d5d5a2f99.tar.xz
nixpkgs-7cb01d58b22a163e2075c567ef6f470d5d5a2f99.tar.zst
nixpkgs-7cb01d58b22a163e2075c567ef6f470d5d5a2f99.zip
platforms/raspberrypi: enable kernelAutoModules
Diffstat (limited to 'lib/systems/platforms.nix')
-rw-r--r--lib/systems/platforms.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/systems/platforms.nix b/lib/systems/platforms.nix
index f624a5c140a..8027f6b9fc1 100644
--- a/lib/systems/platforms.nix
+++ b/lib/systems/platforms.nix
@@ -170,7 +170,8 @@ rec {
     kernelBaseConfig = "bcm2835_defconfig";
     kernelDTB = true;
     kernelArch = "arm";
-    kernelAutoModules = false;
+    kernelAutoModules = true;
+    kernelPreferBuiltin = true;
     kernelExtraConfig = ''
       # Disable OABI to have seccomp_filter (required for systemd)
       # https://github.com/raspberrypi/firmware/issues/651