about summary refs log tree commit diff
path: root/machines
diff options
context:
space:
mode:
authoraszlig <aszlig@redmoonstudios.org>2016-06-14 23:30:31 +0200
committeraszlig <aszlig@redmoonstudios.org>2016-06-14 23:30:31 +0200
commit4b08da520408b9d2ea49d599be20785bd0f58338 (patch)
treeab868c8096a939998c0c20a6c01fdc6b9a447f90 /machines
parentd730df7a438e8c8d692bea6e2dfa227aaa408ecb (diff)
Revert adding dummy machine "gitit-stub"
This reverts commit 65435d827c846ab2eef966601cd0490591b8dbe9.

Commit d730df7 fixed the meta.hydraPlatforms attribute, so the generic
channel now should build the patched gitit version as part of its
constituents and we don't need a dummy machine just for that anymore.

Other than that, the package now also gets built as a separate job to
allow for one-click installs.

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
Cc: @Profpatsch
Diffstat (limited to 'machines')
-rw-r--r--machines/default.nix1
-rw-r--r--machines/labnet/gitit-stub.nix13
2 files changed, 0 insertions, 14 deletions
diff --git a/machines/default.nix b/machines/default.nix
index cd1bc916..ca52db7b 100644
--- a/machines/default.nix
+++ b/machines/default.nix
@@ -16,7 +16,6 @@ with import ../lib;
     labtops = callNetwork ./labnet/labtops.nix {
       vuizvui.user.openlab.labtops.enable = true;
     };
-    gitit-stub = callMachine ./labnet/gitit-stub.nix {};
   };
   profpatsch = {
     katara = callMachine ./profpatsch/katara.nix {};
diff --git a/machines/labnet/gitit-stub.nix b/machines/labnet/gitit-stub.nix
deleted file mode 100644
index 0e8f7a2d..00000000
--- a/machines/labnet/gitit-stub.nix
+++ /dev/null
@@ -1,13 +0,0 @@
-{ config, lib, pkgs, ... }:
-
-{
-
-  # TODO: create a true channel that only advances if these build.
-  environment.systemPackages = [
-    pkgs.vuizvui.openlab.gitit
-  ];
-
-  fileSystems."/".device = "/dev/null";
-  boot.loader.grub.device = "/dev/null";
-
-}