From 4c3a9ee4c2142988855e12b461aa3161babe21a7 Mon Sep 17 00:00:00 2001 From: Astro Date: Fri, 18 Mar 2022 02:43:30 +0100 Subject: [PATCH] rpi-netboot: fix kernelParams --- hosts/rpi-netboot/default.nix | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/hosts/rpi-netboot/default.nix b/hosts/rpi-netboot/default.nix index c7c27d33..aa2c7896 100644 --- a/hosts/rpi-netboot/default.nix +++ b/hosts/rpi-netboot/default.nix @@ -1,9 +1,7 @@ { nixpkgs, config, lib, pkgs, modulesPath, ... }: { - boot.initrd.kernelParams = [ - "verbose" - ]; + boot.kernelParams = [ "verbose" ]; swapDevices = [ ];