huge progress dump, impermanence

This commit is contained in:
Charlie Root 2024-09-20 15:45:44 +02:00
commit fce64637c2
13 changed files with 161 additions and 81 deletions

View file

@ -0,0 +1,35 @@
{
config = {
fileSystems = {
"/boot" = {
device = "";
fsType = "vfat";
};
# root on tmpfs
"/" = {
device = "none";
fsType = "tmpfs";
options = ["defaults" "size=25%" "mode=755"];
};
"/nix" = {
device = "";
fsType = "btrfs";
options = ["subvol=nix" "compress=zstd" "noatime"];
};
"/persist" = {
device = "";
neededForBoot = true;
fsType = "btrfs";
options = ["subvol=persist" "compress=zstd" "noatime"];
};
"/home" = {
device = "";
fsType = "btrfs";
options = ["subvol=home" "compress=zstd" "noatime"];
};
};
swapDevices = [
{device = "";}
];
};
}