nixos-config/hosts/partition/i15.nix

42 lines
953 B
Nix
Raw Normal View History

2023-02-23 19:18:15 -03:00
{ disks ? [ "/dev/sda" ], ... }: {
disk.sda = {
type = "disk";
device = builtins.elemAt disks 0;
content = {
type = "table";
format = "gpt";
partitions = [
{
type = "partition";
name = "NIX_BOOT";
start = "1MiB";
end = "1GiB";
bootable = true;
content = {
type = "filesystem";
format = "vfat";
mountpoint = "/boot";
options = [ "defaults" ];
};
}
{
type = "partition";
name = "NIX_CRYPT_ROOT";
start = "1GiB";
end = "100%";
content = {
type = "luks";
name = "main";
content = {
type = "btrfs";
name = "BTRFS_ROOT";
mountpoint = "/";
subvolumes = [ "/home" "/nixos" "/swap" ];
};
};
}
];
};
};
}