more indentation stuff

This commit is contained in:
twoneis 2024-05-06 21:06:39 +02:00
parent 0e666decc7
commit c9bfc27379

View file

@ -59,47 +59,47 @@
}; };
}; };
}; };
}; zpool = {
zpool = { zroot = {
zroot = { type = "zpool";
type = "zpool"; mode = "";
mode = ""; rootFsOptions = {
rootFsOptions = { compression = "zstd";
compression = "zstd"; canmount = "off";
canmount = "off"; "com.sun:auto-snapshot" = "false";
"com.sun:auto-snapshot" = "false"; };
}; postCreateHook = "zfs list -t snapshot -H -o name | grep -E '^zroot@blank$' || zfs snapshot zroot@blank";
postCreateHook = "zfs list -t snapshot -H -o name | grep -E '^zroot@blank$' || zfs snapshot zroot@blank";
datasets = { datasets = {
root = { root = {
type = "zfs_fs"; type = "zfs_fs";
mountpoint = "/"; mountpoint = "/";
}; };
nix = { nix = {
type = "zfs_fs"; type = "zfs_fs";
mountpoint = "/nix"; mountpoint = "/nix";
}; };
persist = { persist = {
type = "zfs_fs"; type = "zfs_fs";
mountpoint = "/persist"; mountpoint = "/persist";
};
}; };
}; };
}; zstore = {
zstore = { type = "zpool";
type = "zpool"; mode = "";
mode = ""; rootFsOptions = {
rootFsOptions = { compression = "zstd";
compression = "zstd"; canmount = "off";
canmount = "off"; "com.sun:auto-snapshot" = "false";
"com.sun:auto-snapshot" = "false"; };
}; postCreateHook = "zfs list -t snapshot -H -o name | grep -E '^zroot@blank$' || zfs snapshot zroot@blank";
postCreateHook = "zfs list -t snapshot -H -o name | grep -E '^zroot@blank$' || zfs snapshot zroot@blank";
datasets = { datasets = {
persist = { persist = {
type = "zfs_fs"; type = "zfs_fs";
mountpoint = "/persist/ext"; mountpoint = "/persist/ext";
};
}; };
}; };
}; };