Files
dotfiles/nix/homelab/disk-config.nix
2025-04-08 04:13:57 +00:00

51 lines
1.0 KiB
Nix

{
disko.devices = {
disk = {
disk1 = {
device = "/dev/nvme0n1";
type = "disk";
content = {
type = "gpt";
partitions = {
boot = {
size = "1M";
type = "EF02";
};
ESP = {
type = "EF00";
size = "512M";
content = {
type = "filesystem";
mountpoint = "/boot";
format = "vfat";
};
};
primary = {
size = "100%";
content = {
type = "lvm_pv";
vg = "pool";
};
};
};
};
};
};
lvm_vg = {
pool = {
type = "lvm_vg";
lvs = {
root = {
size = "100%FREE";
content = {
type = "filesystem";
format = "btrfs";
mountpoint = "/";
};
};
};
};
};
};
}