diff options
author | tv <tv@shackspace.de> | 2015-07-27 02:55:06 +0200 |
---|---|---|
committer | tv <tv@shackspace.de> | 2015-07-27 02:55:06 +0200 |
commit | a952f015a860c62046a22ca194d0d841390e7132 (patch) | |
tree | 017e58e6c54fb54fd0bf3724212c8dc725503fb7 | |
parent | ba9bb738170dda787473ead118ad2e049b3714ab (diff) |
3 krebs.build += {deploy,deps}
-rw-r--r-- | 3modules/krebs/default.nix | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/3modules/krebs/default.nix b/3modules/krebs/default.nix index 70d454971..e385244d5 100644 --- a/3modules/krebs/default.nix +++ b/3modules/krebs/default.nix @@ -22,6 +22,24 @@ let build = mkOption { type = types.submodule { options = { + deploy = mkOption { + type = with types; nullOr str; + default = null; + }; + deps = mkOption { + type = with types; attrsOf (submodule { + options = { + url = mkOption { + type = either str path; + }; + rev = mkOption { + type = nullOr str; + default = null; + }; + }; + }); + default = {}; + }; host = mkOption { type = types.host; }; |