diff --git a/flake.nix b/flake.nix index cb18126..3c9127c 100644 --- a/flake.nix +++ b/flake.nix @@ -329,9 +329,6 @@ }; } // self.colmenaHive.nodes; - hydraJobs = { - agate = self.nixosConfigurations.agate; - }; } // flake-utils.lib.eachDefaultSystem ( system: diff --git a/machines/agate/disk-config.nix b/machines/agate/disk-config.nix index 2ce939b..67aa8e2 100644 --- a/machines/agate/disk-config.nix +++ b/machines/agate/disk-config.nix @@ -86,47 +86,6 @@ }; }; }; - - hdd1 = { - type = "disk"; - device = "/dev/disk/by-id/ata-WUH721414ALE6L0_9KGEMPVL"; - content = { - type = "gpt"; - partitions = { - storage_p1 = { - size = "100%"; - }; - }; - }; - }; - hdd2 = { - type = "disk"; - device = "/dev/disk/by-id/ata-WUH721414ALE6L0_X1G14ZNL"; - content = { - type = "gpt"; - partitions = { - storage_p2 = { - size = "100%"; - content = { - type = "btrfs"; - extraArgs = [ - "-f" - "-d raid1" - "/dev/disk/by-partlabel/disk-hdd1-storage_p1" - ]; - subvolumes = { - "/storage" = { - mountOptions = [ - "compress=zstd" - ]; - mountpoint = "/storage"; - }; - }; - }; - }; - }; - }; - }; }; }; }