1
Fork 0
satellite/hosts/nixos/lapetus/filesystems/partitions.nix

84 lines
1.9 KiB
Nix
Raw Normal View History

2023-07-18 13:04:04 +02:00
{ disks, ... }: {
2023-07-17 16:50:07 +02:00
disko.devices = {
# {{{ Disks
disk = {
2023-07-18 01:07:40 +02:00
x = {
2023-07-17 16:50:07 +02:00
type = "disk";
device = builtins.elemAt disks 0;
content = {
type = "table";
format = "gpt";
partitions = [
{
name = "ESP";
2023-07-18 01:07:40 +02:00
start = "0";
2023-07-18 01:06:27 +02:00
end = "64MiB";
fs-type = "fat32";
2023-07-17 16:50:07 +02:00
bootable = true;
content = {
type = "filesystem";
2023-07-18 01:06:27 +02:00
format = "vfat";
2023-07-17 16:50:07 +02:00
mountpoint = "/boot";
};
}
{
2023-07-18 00:48:23 +02:00
name = "zfs";
start = "128MiB";
2023-07-17 16:50:07 +02:00
end = "100%";
content = {
type = "zfs";
pool = "zroot";
};
}
];
};
};
};
# }}}
# {{{ zpools
zpool = {
zroot = {
type = "zpool";
2023-07-17 19:31:40 +02:00
mountpoint = "/";
2023-07-17 18:40:39 +02:00
2023-07-17 16:50:07 +02:00
postCreateHook = ''
zfs snapshot zroot@blank
zfs set keylocation="prompt" "zroot";
'';
2023-07-17 18:40:39 +02:00
2023-07-17 16:50:07 +02:00
rootFsOptions = {
compression = "lz4";
"com.sun:auto-snapshot" = "false";
encryption = "aes-256-gcm";
keyformat = "passphrase";
keylocation = "file:///tmp/secret.key";
};
# {{{ Datasets
datasets = {
"root/persist/data" = {
2023-07-17 18:54:31 +02:00
type = "zfs_fs";
2023-07-17 16:50:07 +02:00
mountpoint = "/persist/data";
options."com.sun:auto-snapshot" = "true";
};
"root/persist/state" = {
2023-07-17 18:54:31 +02:00
type = "zfs_fs";
2023-07-17 16:50:07 +02:00
mountpoint = "/persist/state";
options."com.sun:auto-snapshot" = "true";
};
2023-07-17 18:54:31 +02:00
"root/local/nix" = {
type = "zfs_fs";
mountpoint = "/nix";
};
2023-07-17 16:50:07 +02:00
"root/local/cache" = {
2023-07-17 18:54:31 +02:00
type = "zfs_fs";
2023-07-17 16:50:07 +02:00
mountpoint = "/persist/local/cache";
};
};
# }}}
};
};
2023-07-17 19:35:34 +02:00
# }}}
2023-07-17 16:50:07 +02:00
};
}