From 26acd744abbea81d10feb83ef22560d1dce7943b Mon Sep 17 00:00:00 2001
From: makefu <makefu@nixos.dev>
Date: Wed, 16 Dec 2015 12:23:55 +0100
Subject: [PATCH] m 1 vbob: use custom nixpkgs, /nix mount

---
 1systems/vbob.nix | 16 ++++++++++++----
 1 file changed, 12 insertions(+), 4 deletions(-)

diff --git a/1systems/vbob.nix b/1systems/vbob.nix
index b121a73..6bcdb3e 100644
--- a/1systems/vbob.nix
+++ b/1systems/vbob.nix
@@ -13,10 +13,17 @@
 
       # environment
 
-      ../2configs/zsh-user.nix
-      ../2configs/virtualization.nix
     ];
-
+  krebs.build.source.git.nixpkgs = {
+    #url = https://github.com/nixos/nixpkgs;
+    # HTTP Everywhere
+    rev = "a3974e";
+  };
+  fileSystems."/nix" = {
+    device ="/dev/disk/by-label/nixstore";
+    fsType = "ext4";
+  };
+  #makefu.buildbot.master.enable = true;
   # allow vbob to deploy self
   users.extraUsers = {
     root = {
@@ -40,8 +47,8 @@
     connectTo = [
       "gum"
     ];
-
   };
+
   networking.proxy.default = "http://global.proxy.alcatel-lucent.com:8000";
   fileSystems."/media/share" = {
     fsType = "vboxsf";
@@ -50,3 +57,4 @@
   };
 
 }
+