From 7cbc8cfccea2873afd49ee6f353d14e508388e3b Mon Sep 17 00:00:00 2001 From: Christopher James Hayward Date: Sat, 19 Jun 2021 10:38:03 -0400 Subject: [PATCH] Try RPI boot loader --- README.org | 16 ++++++++-------- hosts/raspberry/hardware.nix | 16 ++++++++-------- 2 files changed, 16 insertions(+), 16 deletions(-) diff --git a/README.org b/README.org index f60cdf8..1a74226 100644 --- a/README.org +++ b/README.org @@ -745,14 +745,14 @@ This section is very much a work in progress. I have struggled to get this devic boot.loader.grub.enable = false; boot.loader.generic-extlinux-compatible.enable = true; - # boot.loader.raspberryPi = { - # enable = true; - # version = 4; - # firmwareConfig = '' - # dtparam=sd_poll_once=on - # dtparam=audio=on - # ''; - # }; + boot.loader.raspberryPi = { + enable = true; + version = 4; + firmwareConfig = '' + dtparam=sd_poll_once=on + dtparam=audio=on + ''; + }; sound.enable = true; hardware.pulseaudio.enable = true; diff --git a/hosts/raspberry/hardware.nix b/hosts/raspberry/hardware.nix index fb876f1..28a7f1b 100644 --- a/hosts/raspberry/hardware.nix +++ b/hosts/raspberry/hardware.nix @@ -18,14 +18,14 @@ boot.loader.grub.enable = false; boot.loader.generic-extlinux-compatible.enable = true; - # boot.loader.raspberryPi = { - # enable = true; - # version = 4; - # firmwareConfig = '' - # dtparam=sd_poll_once=on - # dtparam=audio=on - # ''; - # }; + boot.loader.raspberryPi = { + enable = true; + version = 4; + firmwareConfig = '' + dtparam=sd_poll_once=on + dtparam=audio=on + ''; + }; sound.enable = true; hardware.pulseaudio.enable = true;