From 7a3f60038bfd79e6127bcc7285bf0acbe6048d18 Mon Sep 17 00:00:00 2001 From: Jimbo Date: Tue, 29 Oct 2024 15:43:21 -0400 Subject: [PATCH] Secureboot subvol also --- hosts/firefly/system/hardware/default.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/hosts/firefly/system/hardware/default.nix b/hosts/firefly/system/hardware/default.nix index e3d88d7..33e0ac7 100644 --- a/hosts/firefly/system/hardware/default.nix +++ b/hosts/firefly/system/hardware/default.nix @@ -41,6 +41,11 @@ fsType = "btrfs"; options = [ "subvol=@nixconf" "noatime" "nodiratime" "discard" ]; }; + "/etc/secureboot" = { + device = "/dev/disk/by-uuid/bbfed7d1-62f2-4d8e-b63f-7f6ec932105b"; + fsType = "btrfs"; + options = [ "subvol=@secureboot" "noatime" "nodiratime" "discard" ]; + }; "/var" = { device = "/dev/disk/by-uuid/bbfed7d1-62f2-4d8e-b63f-7f6ec932105b"; fsType = "btrfs";