@cryptotaxi247 / infra / commits / 37293ecb

haumea: set configuration limit

The /boot filesystem on haumea only has 230 MB capacity. With an initrd size of 25M and a bzImage of 8.6 this allows 6-7 kernels, and 10 generations should be fine due to some generations not containing any kernel bumps.

Martin Weinelt committed May 23, 2024 at 21:09 UTC 37293ecb9e48e125b0837418711edbcaa7ffb1d0
1 file changed +1
delft/haumea/boot.nix
+1
@@ -5,6 +5,7 @@
5 "/dev/nvme1n1"
6 ];
7 copyKernels = true;
8 + configurationLimit = 10; # 230 MB /boot capacity
9 };
10 boot.initrd.availableKernelModules = [ "ahci" "nvme" "usbhid" ];
11 boot.kernelModules = [ "kvm-amd" ];