Universe/worlds/majin/disks.nix

62 lines
1.4 KiB
Nix
Raw Normal View History

2024-02-25 19:38:15 +00:00
{
2024-03-27 20:09:20 +00:00
disko = {
devices = {
disk = {
oneT = {
device = "/dev/disk/by-id/nvme-Seagate_FireCuda_530_ZP1000GM30013_7VQ04CBH";
type = "disk";
content = {
type = "gpt";
partitions = {
home = {
size = "100%";
content = {
type = "filesystem";
format = "ext4";
mountpoint = "/home";
};
2024-02-25 19:38:15 +00:00
};
2024-03-27 20:09:20 +00:00
};
};
2024-03-27 20:09:20 +00:00
};
2024-03-27 20:09:20 +00:00
twoT = {
device = "/dev/disk/by-id/nvme-Samsung_SSD_990_PRO_2TB_S7DNNJ0WA07648B";
type = "disk";
content = {
type = "gpt";
partitions = {
ESP = {
size = "1G";
type = "EF00";
content = {
type = "filesystem";
format = "vfat";
mountpoint = "/boot";
};
2024-02-25 19:38:15 +00:00
};
2024-03-27 20:09:20 +00:00
swap = {
size = "64G";
content = {
type = "swap";
resumeDevice = true;
};
2024-02-25 19:38:15 +00:00
};
2024-03-27 20:09:20 +00:00
root = {
size = "100%";
content = {
type = "filesystem";
format = "ext4";
mountpoint = "/";
};
2024-02-25 19:38:15 +00:00
};
2024-03-27 20:09:20 +00:00
};
2024-02-25 19:38:15 +00:00
};
};
};
};
};
}