From 4791277f2e35ab55c88963c9f7acc5b504ec3695 Mon Sep 17 00:00:00 2001 From: stitchy Date: Fri, 31 Jan 2025 02:57:53 +0000 Subject: [PATCH] fix(lappy): add missing persist mount --- hosts/lappy/hardware-configuration.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/hosts/lappy/hardware-configuration.nix b/hosts/lappy/hardware-configuration.nix index e377b09..48c891e 100644 --- a/hosts/lappy/hardware-configuration.nix +++ b/hosts/lappy/hardware-configuration.nix @@ -26,6 +26,11 @@ fsType = "btrfs"; options = [ "compress=zstd" "subvol=@nix-store" "noatime"]; }; + "/persist" = { + device = "/dev/disk/by-uuid/d626409d-8166-45c2-a168-09dfab31b8a4"; + fsType = "btrfs"; + options = [ "compress=zstd" "subvol=@persist" ]; + }; }; boot.initrd.luks.devices."luksdev".device = "/dev/disk/by-uuid/100a5596-671b-48ba-a1d1-0723559baf87";