about summary refs log tree commit diff
path: root/machines
diff options
context:
space:
mode:
authorProfpatsch <mail@profpatsch.de>2016-05-20 16:37:05 +0200
committerProfpatsch <mail@profpatsch.de>2016-05-20 16:37:05 +0200
commit91a2041fb43c408439f5b54fcfccfec8f402460d (patch)
treeff680299cf8e150369092bf8de2b8b5117c42764 /machines
parent69c0ecbe779a4a8f37469e1ff5eb1f7d9a9d7e40 (diff)
machines/labnet: init website-vm
Diffstat (limited to 'machines')
-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
+  ];
+}