From 20651e87399f07336d7c139531b34abefec0b2ac Mon Sep 17 00:00:00 2001 From: Serhii Khoma Date: Sun, 3 Feb 2019 21:07:00 +0200 Subject: [PATCH] feat: docker-config -> add missing fields -> priviliged and hostname --- src/nix/service.nix | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/src/nix/service.nix b/src/nix/service.nix index 927126b..a8c19b5 100644 --- a/src/nix/service.nix +++ b/src/nix/service.nix @@ -8,7 +8,7 @@ let inherit (lib) mkOption types; - inherit (types) listOf nullOr attrsOf string either int; + inherit (types) listOf nullOr attrsOf string either int bool; in { options = { @@ -20,6 +20,10 @@ in type = nullOr string; default = null; }; + service.hostname = mkOption { + type = nullOr string; + default = null; + }; service.environment = mkOption { type = attrsOf (either string int); default = {}; @@ -39,6 +43,10 @@ in type = nullOr string; default = null; }; + service.privileged = mkOption { + type = nullOr bool; + default = null; + }; service.entrypoint = mkOption { type = nullOr string; default = null;