fix(lappy): add missing persist mount

This commit is contained in:
stitchy 2025-01-31 02:57:53 +00:00
parent e31a8c520f
commit 4791277f2e
Signed by: stitchy
SSH key fingerprint: SHA256:yz2SoxdnY67tfY5Jzb0f2v8f5W3o/IF359kbcquWip8

View file

@ -26,6 +26,11 @@
fsType = "btrfs"; fsType = "btrfs";
options = [ "compress=zstd" "subvol=@nix-store" "noatime"]; 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"; boot.initrd.luks.devices."luksdev".device = "/dev/disk/by-uuid/100a5596-671b-48ba-a1d1-0723559baf87";