diff options
author | tv <tv@shackspace.de> | 2015-11-07 09:48:06 +0100 |
---|---|---|
committer | tv <tv@shackspace.de> | 2015-11-07 09:48:06 +0100 |
commit | 8ad05d0f40debdb2dc41aef2db24f77f539f4328 (patch) | |
tree | 50c71257fa56bd1d4a67c3ef23cc10620fd387ff /krebs/3modules/build.nix | |
parent | d590cf26cd8fa33ed4140bef7a5d689c76455625 (diff) | |
parent | bae469d2a64165a42d93cdb31e231fa75e9813a5 (diff) |
Merge remote-tracking branch 'cd/master'
Diffstat (limited to 'krebs/3modules/build.nix')
-rw-r--r-- | krebs/3modules/build.nix | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/krebs/3modules/build.nix b/krebs/3modules/build.nix index 1205e192b..7f004cd81 100644 --- a/krebs/3modules/build.nix +++ b/krebs/3modules/build.nix @@ -29,10 +29,13 @@ let }; options.krebs.build.source.dir = mkOption { - type = types.attrsOf (types.submodule ({ config, ... }: { + type = let + default-host = config.krebs.current.host; + in types.attrsOf (types.submodule ({ config, ... }: { options = { host = mkOption { type = types.host; + default = default-host; }; path = mkOption { type = types.str; |