From 0068277abde3fde73a60d3bec756902a768f4778 Mon Sep 17 00:00:00 2001
From: makefu <github@syntax-fehler.de>
Date: Wed, 7 Sep 2016 15:18:09 +0200
Subject: [PATCH] m 2 default: add trace for populate

---
 2configs/default.nix | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/2configs/default.nix b/2configs/default.nix
index cdaa38f..110d1ec 100644
--- a/2configs/default.nix
+++ b/2configs/default.nix
@@ -24,7 +24,7 @@ with config.krebs.lib;
       source = let inherit (config.krebs.build) host user; in {
         nixpkgs = if config.makefu.full-populate or (getEnv "dummy_secrets" == "true") then
           { # stable @ 2016-07-20
-            git = { url = https://github.com/nixos/nixpkgs; ref = "125ffff"; };
+            git = trace "Populating nixpkgs via full clone" { url = https://github.com/nixos/nixpkgs; ref = "125ffff"; };
           }
             else
             # TODO use http, once it is implemented
@@ -32,7 +32,7 @@ with config.krebs.lib;
 
             ## prepare so we do not have to wait for rsync:
             ## cd /var/src; curl https://github.com/nixos/nixpkgs/tarball/125ffff  -L | tar zx  && mv NixOS-nixpkgs-125ffff nixpkgs
-            { file = "/home/makefu/store/125ffff";};
+            trace "Populating nixpkgs with local directory" { file = "/home/makefu/store/125ffff";};
         secrets.file =
           if getEnv "dummy_secrets" == "true"
             then toString <stockholm/makefu/6tests/data/secrets>