about summary refs log tree commit diff
path: root/lib/call-network.nix
diff options
context:
space:
mode:
authoraszlig <aszlig@redmoonstudios.org>2016-05-03 02:38:45 +0200
committeraszlig <aszlig@redmoonstudios.org>2016-05-03 02:49:50 +0200
commit49dc58c6f8d72a4e142176f25da52666ef9ae268 (patch)
treee5a624d64bfda20cdfb3a4bd6e7f01d2e2eea279 /lib/call-network.nix
parent1ac04e64a280ce656a7837e062d49423c138aa05 (diff)
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 <aszlig@redmoonstudios.org>
Diffstat (limited to 'lib/call-network.nix')
-rw-r--r--lib/call-network.nix10
1 files changed, 4 insertions, 6 deletions
diff --git a/lib/call-network.nix b/lib/call-network.nix
index d9e073f1..6b621357 100644
--- a/lib/call-network.nix
+++ b/lib/call-network.nix
@@ -7,12 +7,10 @@ let
 
   mkMachine = name: {
     inherit name;
-    value = import ./call-machine.nix machineAttrs.${name} ({
-      extraConfig = { lib, ... }: {
-        imports = lib.singleton (args.extraConfig or {});
-        networking.hostName = lib.mkOverride 900 name;
-        _module.args.nodes = mapAttrs (const (m: m ? eval)) machines;
-      };
+    value = import ./call-machine.nix machineAttrs.${name} ({ lib, ... }: {
+      imports = lib.singleton (args.extraConfig or {});
+      networking.hostName = lib.mkOverride 900 name;
+      _module.args.nodes = mapAttrs (const (m: m ? eval)) machines;
     } // removeAttrs args [ "extraConfig" ]);
   };