Mount firmware partition at /boot
This commit is contained in:
parent
e65f322cfb
commit
37396a628c
|
@ -4,8 +4,12 @@
|
||||||
|
|
||||||
# A bunch of boot parameters needed for optimal runtime on RPi 4B
|
# A bunch of boot parameters needed for optimal runtime on RPi 4B
|
||||||
boot.kernelPackages = pkgs.linuxPackages_rpi4;
|
boot.kernelPackages = pkgs.linuxPackages_rpi4;
|
||||||
boot.kernelParams =
|
boot.kernelParams = [
|
||||||
[ "zfs.zfs_arc_max=134217728" "console=TTYAMA0,115200" "console=tty1" ];
|
"zfs.zfs_arc_max=134217728"
|
||||||
|
"console=TTYAMA0,115200"
|
||||||
|
"console=tty1"
|
||||||
|
"8250.nr_uarts=1"
|
||||||
|
];
|
||||||
boot.loader.raspberryPi = {
|
boot.loader.raspberryPi = {
|
||||||
enable = true;
|
enable = true;
|
||||||
version = 4;
|
version = 4;
|
||||||
|
|
|
@ -16,6 +16,11 @@
|
||||||
fsType = "ext4";
|
fsType = "ext4";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
fileSystems."/boot" = {
|
||||||
|
device = "/dev/disk/by-uuid/2178-694E";
|
||||||
|
fsType = "vfat";
|
||||||
|
};
|
||||||
|
|
||||||
fileSystems."/vault" = {
|
fileSystems."/vault" = {
|
||||||
device = "vault";
|
device = "vault";
|
||||||
fsType = "zfs";
|
fsType = "zfs";
|
||||||
|
|
Loading…
Reference in New Issue