Add all drives to disko config

- /dev/nvme0n1 (954G): root + EFI (unchanged)
- /dev/sda (932G): /mnt/games (Steam library)
- /dev/sdb (466G): /mnt/storage1
- /dev/sdc (119G): /mnt/storage2

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Erich Blume 2026-02-18 08:19:58 -08:00
commit ac0fc711c5

View file

@ -28,6 +28,57 @@
};
};
};
games = {
type = "disk";
device = "/dev/sda";
content = {
type = "gpt";
partitions = {
games = {
size = "100%";
content = {
type = "filesystem";
format = "ext4";
mountpoint = "/mnt/games";
};
};
};
};
};
storage1 = {
type = "disk";
device = "/dev/sdb";
content = {
type = "gpt";
partitions = {
storage1 = {
size = "100%";
content = {
type = "filesystem";
format = "ext4";
mountpoint = "/mnt/storage1";
};
};
};
};
};
storage2 = {
type = "disk";
device = "/dev/sdc";
content = {
type = "gpt";
partitions = {
storage2 = {
size = "100%";
content = {
type = "filesystem";
format = "ext4";
mountpoint = "/mnt/storage2";
};
};
};
};
};
};
};
}