From 144d8fab6ce75ab1a8ec260c78e7ee7b9bb61812 Mon Sep 17 00:00:00 2001 From: Tom Alexander Date: Sun, 30 Nov 2025 12:22:03 -0500 Subject: [PATCH] Fix quark's updating. --- nix/configuration/hosts/quark/disk-config.nix | 9 +++++++++ 1 file changed, 9 insertions(+) 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";