diff --git a/nixos/ringtail/disk-config.nix b/nixos/ringtail/disk-config.nix index 4313222..f383212 100644 --- a/nixos/ringtail/disk-config.nix +++ b/nixos/ringtail/disk-config.nix @@ -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"; + }; + }; + }; + }; + }; }; }; }