impermanence

This commit is contained in:
2025-10-06 14:47:19 -04:00
parent a4bf2a0ea9
commit 9d0d0b10d1
5 changed files with 104 additions and 2 deletions

View File

@@ -15,17 +15,29 @@
mountpoint = "/boot";
};
};
root = {
persistent = {
size = "100%";
content = {
type = "filesystem";
format = "f2fs";
mountpoint = "/";
mountpoint = "/persistent";
};
};
};
};
};
};
nodev = {
"/" = {
fsType = "tmpfs";
mountOptions = [
"defaults"
"size=2G"
"mode=755"
];
};
};
};
fileSystems."/persistent".neededForBoot = true;
}