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/website-vm.nix13
2 files changed, 0 insertions, 14 deletions
diff --git a/machines/default.nix b/machines/default.nix
index afaa9ec5..2e4c51cc 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;
     };
-    website-vm = callMachine ./labnet/website-vm.nix {};
   };
   profpatsch = {
     katara = callMachine ./profpatsch/katara.nix {};
diff --git a/machines/labnet/website-vm.nix b/machines/labnet/website-vm.nix
deleted file mode 100644
index 604674d4..00000000
--- a/machines/labnet/website-vm.nix
+++ /dev/null
@@ -1,13 +0,0 @@
-# stub for the openlab website VM, which isn’t a nixos,
-# but still needs some stuff built.
-{ pkgs, lib, config, ... }:
-
-{
-  environment.systemPackages = with pkgs; [
-    vuizvui.openlab.gitit
-  ];
-
-  # dummy values
-  fileSystems."/".label = "root";
-  boot.loader.grub.device = "nodev";
-}