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:
parent
64b6bbaf74
commit
ac0fc711c5
1 changed files with 51 additions and 0 deletions
|
|
@ -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";
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue