From 49dc58c6f8d72a4e142176f25da52666ef9ae268 Mon Sep 17 00:00:00 2001 From: aszlig Date: Tue, 3 May 2016 02:38:45 +0200 Subject: lib/call-machine: Get rid of extraConfig attribute Right now we're not using the system attribute at all and we can still use nixpkgs.system to set the attribute for a particular machine. So we now can pass configuration attributes to the second argument of callMachine *directly* instead of using specific subattributes, which I think feels is a more natural way so users don't need to look up that "extraConfig" is for adding configuration values. Signed-off-by: aszlig --- machines/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'machines/default.nix') diff --git a/machines/default.nix b/machines/default.nix index 2f09ffb3..bbe03087 100644 --- a/machines/default.nix +++ b/machines/default.nix @@ -14,7 +14,7 @@ with import ../lib; }; labnet = { labtops = callNetwork ./labnet/labtop.nix { - extraConfig.vuizvui.user.openlab.labtops.enable = true; + vuizvui.user.openlab.labtops.enable = true; }; }; profpatsch = { -- cgit 1.4.1