From ac0fc711c55d993fec0dd0b2c07e49a03ded80d5 Mon Sep 17 00:00:00 2001 From: Erich Blume Date: Wed, 18 Feb 2026 08:19:58 -0800 Subject: [PATCH] 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 --- nixos/ringtail/disk-config.nix | 51 ++++++++++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) 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"; + }; + }; + }; + }; + }; }; }; }