From b57827c86e41df1acff599c36aba56ca3aac917f Mon Sep 17 00:00:00 2001 From: kalipso Date: Tue, 3 Dec 2024 00:45:07 +0100 Subject: [PATCH] [lucia] rm deprecated boot.loader.raspberryPi needs to be fixed still according to https://github.com/NixOS/nixpkgs/pull/241534 --- machines/lucia/configuration.nix | 8 -------- 1 file changed, 8 deletions(-) diff --git a/machines/lucia/configuration.nix b/machines/lucia/configuration.nix index ecb2965..7184763 100644 --- a/machines/lucia/configuration.nix +++ b/machines/lucia/configuration.nix @@ -20,14 +20,6 @@ in # Use the extlinux boot loader. (NixOS wants to enable GRUB by default) boot.loader.grub.enable = false; - boot.loader.raspberryPi.enable = false; - boot.loader.raspberryPi.version = 3; - boot.loader.raspberryPi.uboot.enable = true; - boot.loader.raspberryPi.firmwareConfig = '' - dtparam=audio=on - hdmi_ignore_edid_audio=1 - audio_pwm_mode=2 - ''; # Enables the generation of /boot/extlinux/extlinux.conf boot.loader.generic-extlinux-compatible.enable = true;