test: impermanence

This commit is contained in:
Nick 2025-11-05 21:40:56 -06:00
parent 882c220bef
commit 397b1a7ff0

View file

@ -7,8 +7,8 @@
let
inherit (flake.config.people) user0;
rootDevice = "/dev/disk/by-uuid/df9868a4-2dd1-40d5-9f5f-c56ceac62216";
bootDevice = "/dev/disk/by-uuid/DF19-AD99";
rootDevice = "/dev/disk/by-label/root";
bootDevice = "/dev/disk/by-label/BOOT";
in
{
fileSystems = {
@ -28,12 +28,12 @@ in
];
};
"/persistent" = {
"/persist" = {
device = rootDevice;
fsType = "btrfs";
neededForBoot = true;
options = [
"subvol=persistent"
"subvol=persist"
];
};