snowfield/machines/akhaten/disko.nix

80 lines
1.8 KiB
Nix
Raw Normal View History

2024-07-10 00:36:37 +02:00
{
devices = {
disk = {
main = {
type = "disk";
device = "/dev/disk/by-id/ata-HGST_HTE721010A9E630_JR10034M34EVTK";
content = {
type = "gpt";
partitions = {
boot = {
size = "1M";
2024-08-21 23:27:25 +02:00
type = "EF02";
2024-07-10 00:36:37 +02:00
};
ESP = {
size = "512M";
type = "EF00";
content = {
type = "filesystem";
format = "vfat";
mountpoint = "/boot";
};
};
2024-08-21 23:27:25 +02:00
swap = {
size = "16G";
content = {
type = "swap";
discardPolicy = "both";
};
};
2024-07-10 00:36:37 +02:00
root = {
size = "100%";
content = {
2024-08-21 23:27:25 +02:00
type = "lvm_pv";
vg = "mainpool";
2024-07-10 00:36:37 +02:00
};
};
};
};
};
};
2024-08-21 23:27:25 +02:00
lvm_vg = {
mainpool = {
type = "lvm_vg";
lvs = {
root = {
size = "100G";
pool = "mainpool";
content = {
type = "filesystem";
format = "ext4";
mountpoint = "/";
mountOptions = [ "defaults" ];
};
};
persistent = {
size = "100G";
pool = "mainpool";
content = {
type = "filesystem";
format = "ext4";
mountpoint = "/persistent";
mountOptions = [ "defaults" ];
};
};
store = {
size = "600G";
pool = "mainpool";
content = {
type = "filesystem";
format = "ext4";
mountpoint = "/nix";
};
};
};
};
};
2024-07-10 00:36:37 +02:00
};
}