about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--machines/default.nix1
-rw-r--r--machines/labnet/website-vm.nix9
2 files changed, 10 insertions, 0 deletions
diff --git a/machines/default.nix b/machines/default.nix
index 2e4c51cc..afaa9ec5 100644
--- a/machines/default.nix
+++ b/machines/default.nix
@@ -16,6 +16,7 @@ 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
new file mode 100644
index 00000000..ceb72094
--- /dev/null
+++ b/machines/labnet/website-vm.nix
@@ -0,0 +1,9 @@
+# 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
+  ];
+}