diff --git a/nix/configuration/hosts/quark/disk-config.nix b/nix/configuration/hosts/quark/disk-config.nix index 8fb568c9..c97932f5 100644 --- a/nix/configuration/hosts/quark/disk-config.nix +++ b/nix/configuration/hosts/quark/disk-config.nix @@ -75,6 +75,15 @@ mountpoint = "/"; postCreateHook = "zfs list -t snapshot -H -o name | grep -E '^zroot/linux/nix/root@blank$' || zfs snapshot zroot/linux/nix/root@blank"; }; + "linux/nix/boot" = { + type = "zfs_fs"; + options = { + mountpoint = "legacy"; + "org.zfsbootmenu:active" = "on"; + }; + mountpoint = "/boot"; + postCreateHook = "zfs list -t snapshot -H -o name | grep -E '^zroot/linux/nix/boot@blank$' || zfs snapshot zroot/linux/nix/boot@blank"; + }; "linux/nix/nix" = { type = "zfs_fs"; options.mountpoint = "legacy";