This commit is contained in:
mjallen18
2025-12-26 16:20:02 -06:00
parent 4604e24ee5
commit afb60fc031
10 changed files with 573 additions and 5 deletions

View File

@@ -8,7 +8,7 @@ in
bootloader = "kernel";
firmwarePackage = pkgs.raspberrypifw;
};
kernelPackages = pkgs.linuxPackagesFor pkgs.${namespace}.linux-rpi;
kernelPackages = pkgs.linuxPackages_rpi5;
supportedFilesystems = lib.mkForce [ ];
};

View File

@@ -3,6 +3,7 @@
# https://search.nixos.org/options and in the NixOS manual (`nixos-help`).
{
pkgs,
namespace,
...
}:
@@ -15,6 +16,11 @@
virtualisation.docker.enable = true;
environment.systemPackages = with pkgs.${namespace}; [
ubootRaspberryPi5
ubootTools
];
${namespace} = {
# ###################################################