diff --git a/configuration.nix b/configuration.nix index 9b5bbb5..6227646 100644 --- a/configuration.nix +++ b/configuration.nix @@ -58,6 +58,11 @@ in { # "dyndbg=\"file drivers/video/backlight/qcom-wled.c +fmp\"" ]; + fileSystems."/boot" = { + device = "/dev/disk/by-label/nixos-boot"; + fsType = "ext2"; + }; + # according to fdisk, /dev/mmcblk0p41 is 30469887-7471104=22998783 # blocks, and if we let it get resized by whatever magic this is # (I'm assuming systemd-growfs), on the subsequent boot we'll get @@ -120,10 +125,6 @@ in { users.users.root.openssh.authorizedKeys.keys = import ../telent-nixos-config/users/dan/authorized-keys.nix; - fileSystems."/boot" = { - device = "/dev/disk/by-partlabel/system"; - fsType = "ext4"; - }; hardware.opengl = { enable = true; driSupport = true; };