74 lines
1.6 KiB
Nix
74 lines
1.6 KiB
Nix
|
{ disks ? [ "/dev/sda" ], ... }: {
|
||
|
disko.devices = {
|
||
|
disk = {
|
||
|
main = {
|
||
|
type = "disk";
|
||
|
device = builtins.elemAt disks 0;
|
||
|
content = {
|
||
|
type = "gpt";
|
||
|
partitions = {
|
||
|
ESP = {
|
||
|
size = "1024M";
|
||
|
type = "EF00";
|
||
|
content = {
|
||
|
type = "filesystem";
|
||
|
format = "vfat";
|
||
|
mountpoint = "/boot";
|
||
|
};
|
||
|
};
|
||
|
zfs = {
|
||
|
size = "100%";
|
||
|
content = {
|
||
|
type = "zfs";
|
||
|
pool = "zroot";
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
zpool = {
|
||
|
zroot = {
|
||
|
type = "zpool";
|
||
|
mode = "";
|
||
|
rootFsOptions = {
|
||
|
compression = "zstd";
|
||
|
"com.sun:auto-snapshot" = "false";
|
||
|
mountpoint = "none";
|
||
|
acltype = "posixacl";
|
||
|
};
|
||
|
mountOptions = [
|
||
|
"ashift=12"
|
||
|
];
|
||
|
|
||
|
postCreateHook = "zfs list -t snapshot -H -o name | grep -E '^zroot@blank$' || zfs snapshot zroot@blank";
|
||
|
|
||
|
datasets = {
|
||
|
root = {
|
||
|
type = "zfs_fs";
|
||
|
mountpoint = "/";
|
||
|
};
|
||
|
|
||
|
nix = {
|
||
|
type = "zfs_fs";
|
||
|
mountpoint = "/nix";
|
||
|
};
|
||
|
|
||
|
var = {
|
||
|
type = "zfs_fs";
|
||
|
mountpoint = "/var";
|
||
|
};
|
||
|
|
||
|
home = {
|
||
|
type = "zfs_fs";
|
||
|
mountpoint = "/home";
|
||
|
options = {
|
||
|
"com.sun:auto-snapshot" = "true";
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|