about summary refs log tree commit diff
path: root/machines
diff options
context:
space:
mode:
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";
-
-}