From ea8f3efe7c666019af5bf91189e29d918831f107 Mon Sep 17 00:00:00 2001 From: Aaron Honeycutt Date: Mon, 12 Feb 2024 23:18:39 +0000 Subject: [PATCH] update Pi4 config --- hosts/aarch64/vetra/configuration.nix | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/hosts/aarch64/vetra/configuration.nix b/hosts/aarch64/vetra/configuration.nix index 3e83893..a02a28f 100644 --- a/hosts/aarch64/vetra/configuration.nix +++ b/hosts/aarch64/vetra/configuration.nix @@ -8,6 +8,19 @@ # ./programs.nix ]; + boot = { + kernelPackages = pkgs.linuxKernel.packages.linux_rpi4; + initrd.availableKernelModules = [ "xhci_pci" "usbhid" "usb_storage" ]; + + loader = { + + grub.enable = false; + + generic-extlinux-compatible.enable = true; + + }; + }; + # boot.kernelPackages = pkgs.linuxPackages_latest; nix.settings.experimental-features = [ "nix-command" "flakes" ]; @@ -86,6 +99,6 @@ }; # System - system.stateVersion = "22.11"; + system.stateVersion = "24.05"; system.autoUpgrade.enable = true; }