chore: create persistent mountpoints
This commit is contained in:
@ -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";
|
||||
};
|
||||
};
|
||||
|
Reference in New Issue
Block a user