diff options
| author | Rosa <rosaontheweb@proton.me> | 2026-04-07 13:19:16 -0400 |
|---|---|---|
| committer | Rosa <rosaontheweb@proton.me> | 2026-04-07 13:19:16 -0400 |
| commit | ddbec489d7b369d0cf58de456e5c648c1b0060b5 (patch) | |
| tree | d273ddbe0b4e51544ac688e6d1b5332c72043e05 /hosts/canadian-government-system/disks.nix | |
| parent | fb674d44aa8d3ad10c5af28e3a8c3256549531f6 (diff) | |
decommissioning cgs, jp fonts
Diffstat (limited to 'hosts/canadian-government-system/disks.nix')
| -rw-r--r-- | hosts/canadian-government-system/disks.nix | 105 |
1 files changed, 0 insertions, 105 deletions
diff --git a/hosts/canadian-government-system/disks.nix b/hosts/canadian-government-system/disks.nix deleted file mode 100644 index e8d3ab8..0000000 --- a/hosts/canadian-government-system/disks.nix +++ /dev/null @@ -1,105 +0,0 @@ -{ - disko.devices.disk = { - boot1 = { - content = { - partitions = { - efi = { - content = { - format = "vfat"; - mountOptions = [ "umask=0077" ]; - mountpoint = "/boot"; - type = "filesystem"; - }; - - size = "512M"; - type = "EF00"; - }; - - # the root partition is set up in boot2 - root.size = "100%"; - }; - - type = "gpt"; - }; - - device = "/dev/sda"; - type = "disk"; - }; - - boot2 = { - content = { - partitions = { - efi = { - content = { - format = "vfat"; - mountOptions = [ "umask=0077" ]; - #mountpoint = "/boot"; - type = "filesystem"; - }; - - size = "512M"; - type = "EF00"; - }; - - root = { - content = { - extraArgs = [ - "-f" - "-d raid1" - "/dev/sda2" - ]; - - subvolumes = { - "/nix" = { - mountOptions = [ - "compress=zstd" - "noatime" - ]; - - mountpoint = "/nix"; - }; - - "/root" = { - mountpoint = "/"; - mountOptions = [ "noatime" ]; - }; - }; - - type = "btrfs"; - }; - - size = "100%"; - }; - }; - - type = "gpt"; - }; - - device = "/dev/sdb"; - type = "disk"; - }; - - mass-storage = { - content = { - partitions.data = { - content = { - extraArgs = [ "-f" ]; - subvolumes."/data" = { - mountOptions = [ "noatime" ]; - mountpoint = "/mnt/data"; - }; - - type = "btrfs"; - }; - - size = "100%"; - }; - - type = "gpt"; - }; - - device = "/dev/sdc"; - type = "disk"; - }; - }; -} |
