liminix/modules/arch/arm.nix

11 lines
205 B
Nix
Raw Normal View History

2023-11-05 20:56:25 +00:00
{ lib, lim, pkgs, config, ...}:
{
config = {
kernel.config = {
OF = "y";
};
hardware.ram.startAddress = lim.parseInt "0x40000000";
2023-12-29 17:07:47 +00:00
system.outputs.u-boot = pkgs.ubootQemuArm;
2023-11-05 20:56:25 +00:00
};
}