lib/blade: mount boot drive to /boot

This commit is contained in:
Luke Granger-Brown 2021-02-13 16:07:33 +00:00
parent 2596579835
commit caea9c19c4

View file

@ -25,6 +25,10 @@ in {
"/nix" = zfs "tank/local/nix";
"/var" = zfs "tank/safe/var";
"/home" = zfs "tank/safe/home";
"/boot" = {
device = "/dev/disk/by-label/boot";
fsType = "ext4";
};
};
boot.loader.grub.enable = true;