From 91a2041fb43c408439f5b54fcfccfec8f402460d Mon Sep 17 00:00:00 2001 From: Profpatsch Date: Fri, 20 May 2016 16:37:05 +0200 Subject: machines/labnet: init website-vm --- machines/default.nix | 1 + machines/labnet/website-vm.nix | 9 +++++++++ 2 files changed, 10 insertions(+) create mode 100644 machines/labnet/website-vm.nix 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 + ]; +} -- cgit 1.4.1