From 32b32bd3a815e11aa8f7e3279a638940754b6a23 Mon Sep 17 00:00:00 2001 From: Rosa Date: Sun, 29 Mar 2026 13:13:55 -0400 Subject: the dream is dead --- hosts/canadian-government-system/disks.nix | 118 ----------------------------- 1 file changed, 118 deletions(-) delete mode 100644 hosts/canadian-government-system/disks.nix (limited to 'hosts/canadian-government-system/disks.nix') diff --git a/hosts/canadian-government-system/disks.nix b/hosts/canadian-government-system/disks.nix deleted file mode 100644 index 01a23e7..0000000 --- a/hosts/canadian-government-system/disks.nix +++ /dev/null @@ -1,118 +0,0 @@ -{ - disko.devices.disk = { - boot1 = { - content = { - partitions = { - boot = { - content = { - name = "boot"; - type = "mdraid"; - }; - - size = "500M"; - type = "EF00"; - }; - - root = { - content = { - name = "raid1"; - type = "mdraid"; - }; - - size = "100%"; - }; - }; - - type = "gpt"; - }; - - device = "/dev/sda"; - type = "disk"; - }; - - boot2 = { - content = { - partitions = { - boot = { - content = { - name = "boot"; - type = "mdraid"; - }; - - size = "500M"; - type = "EF00"; - }; - - root = { - content = { - name = "raid1"; - type = "mdraid"; - }; - - size = "100%"; - }; - }; - - type = "gpt"; - }; - - device = "/dev/sdb"; - type = "disk"; - }; - - mdadm = { - boot = { - content = { - format = "vfat"; - mountOptions = [ "umask=0077" ]; - mountpoint = "/boot"; - type = "filesystem"; - }; - - level = 1; - metadata = "1.0"; - type = "mdadm"; - }; - - raid1 = { - content = { - partitions.primary = { - content = { - format = "xfs"; - mountOptions = [ "noatime" ]; - mountpoint = "/"; - type = "filesystem"; - }; - - size = "100%"; - }; - - type = "gpt"; - }; - - level = 1; - type = "mdadm"; - }; - }; - - mass-storage = { - content = { - partitions.main = { - content = { - format = "xfs"; - mountOptions = [ "noatime" ]; - mountpoint = "/mnt/mass-storage"; - type = "filesystem"; - }; - - size = "100%"; - }; - - type = "gpt"; - }; - - device = "/dev/sdc"; - type = "disk"; - }; - }; -} -- cgit v1.3.1