summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--nix-modules/docker-nixos-modules.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/nix-modules/docker-nixos-modules.nix b/nix-modules/docker-nixos-modules.nix
index 4f7c93d..8502d47 100644
--- a/nix-modules/docker-nixos-modules.nix
+++ b/nix-modules/docker-nixos-modules.nix
@@ -2,6 +2,7 @@
, dockerConfig
, nixConfig
, name
+, tag ? ""
, ...}:
let
@@ -49,7 +50,7 @@ let
in pkgs.dockerTools.buildImage {
- inherit name;
+ inherit name tag;
# coreutils are included since we need them in startup scripts
contents = pkgs.coreutils;