2023-12-17 13:06:57 +01:00
|
|
|
{ config, lib, ... }:
|
|
|
|
{
|
|
|
|
|
2023-12-17 19:17:59 +01:00
|
|
|
# disko configuration
|
|
|
|
# -------------------
|
2023-12-17 13:06:57 +01:00
|
|
|
disko.devices = {
|
|
|
|
disk = {
|
|
|
|
root = {
|
|
|
|
type = "disk";
|
|
|
|
device = "/dev/nvme0n1";
|
|
|
|
content = {
|
|
|
|
type = "table";
|
|
|
|
format = "gpt";
|
|
|
|
partitions = [
|
|
|
|
{
|
|
|
|
name = "ESP";
|
|
|
|
start = "0";
|
|
|
|
end = "500MiB";
|
|
|
|
bootable = true;
|
|
|
|
content = {
|
|
|
|
type = "filesystem";
|
|
|
|
format = "vfat";
|
|
|
|
mountpoint = "/boot";
|
|
|
|
mountOptions = [ "defaults" ];
|
|
|
|
};
|
|
|
|
}
|
|
|
|
{
|
|
|
|
name = "zfs";
|
|
|
|
start = "500MiB";
|
|
|
|
end = "100%";
|
|
|
|
content = {
|
|
|
|
type = "luks";
|
|
|
|
name = "root";
|
2023-12-17 16:17:28 +01:00
|
|
|
settings.allowDiscards = true;
|
|
|
|
passwordFile = "/tmp/secret.key";
|
2023-12-17 13:06:57 +01:00
|
|
|
content = {
|
|
|
|
type = "zfs";
|
|
|
|
pool = "zroot";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|
|
|
|
];
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
zpool = {
|
|
|
|
zroot = {
|
|
|
|
type = "zpool";
|
|
|
|
rootFsOptions = {
|
|
|
|
mountpoint = "none";
|
|
|
|
canmount = "off";
|
|
|
|
compression = "lz4";
|
|
|
|
};
|
|
|
|
datasets = {
|
|
|
|
"root" = {
|
|
|
|
type = "zfs_fs";
|
|
|
|
mountpoint = "/";
|
|
|
|
options = {
|
|
|
|
mountpoint = "legacy";
|
|
|
|
compression = "lz4";
|
|
|
|
};
|
|
|
|
};
|
2023-12-17 16:17:28 +01:00
|
|
|
"store" = {
|
|
|
|
type = "zfs_fs";
|
|
|
|
mountpoint = "/nix/store";
|
|
|
|
options = {
|
|
|
|
mountpoint = "legacy";
|
|
|
|
compression = "lz4";
|
|
|
|
};
|
|
|
|
};
|
2023-12-17 13:06:57 +01:00
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|