nixos-nas/disco.nix
Nicole Dresselhaus fefbd61378 added disko.nix
2025-06-10 21:33:11 +02:00

26 lines
697 B
Nix

{ disks ? [ "/dev/nvme0n1" ], ... }:
{
disk = {
device = builtins.elemAt disks 0;
type = "disk";
content = {
type = "gpt";
partitions = [
{ name = "ESP"; type = "EF00"; size = "512M"; content.type = "filesystem";
content.format = "fat32"; mountpoint = "/boot"; }
{ name = "rpool"; type = "BE00"; size = "60G";
content.type = "zfs"; content.pool = "rpool"; }
{ name = "tank"; type = "BE00";
content.type = "zfs"; content.pool = "tank"; }
];
};
};
zpool = {
rpool = { datasets = { root = { mountpoint = "/"; }; }; };
tank = { datasets = { media = { mountpoint = "/tank"; }; }; };
};
}