chore: create persistent mountpoints

This commit is contained in:
Nicole Dresselhaus
2025-06-11 09:22:08 +02:00
parent ac4240f56a
commit 254019c5ee
2 changed files with 71 additions and 1 deletions

View File

@ -14,8 +14,10 @@
size = "512M"; type = "EF00";
content = {
type = "filesystem";
format = "fat32";
format = "vfat";
extraArgs = [ "-F32" ];
mountpoint = "/boot";
mountpointCreate = true;
};
};
rpool = {
@ -37,16 +39,19 @@
root = {
type = "zfs_fs";
mountpoint = "/";
mountpointCreate = true;
options.compression = "zstd";
};
nix = {
type = "zfs_fs";
mountpoint = "/nix";
mountpointCreate = true;
options.compression = "zstd";
};
home = {
type = "zfs_fs";
mountpoint = "/home";
mountpointCreate = true;
options.compression = "zstd";
};
};
@ -58,6 +63,7 @@
datasets.media = {
type = "zfs_fs";
mountpoint = "/tank";
mountpointCreate = true;
options.compression = "zstd";
};
};