diff options
author | makefu <github@syntax-fehler.de> | 2017-08-16 12:09:59 +0200 |
---|---|---|
committer | makefu <github@syntax-fehler.de> | 2017-08-16 12:09:59 +0200 |
commit | f24ddac3aa744ab8eb99a22b0e30f96aa8deff0b (patch) | |
tree | 102d94f4bf012cc6b8b0c393f6dc526845ff6d18 /makefu | |
parent | 20b7cd80ecdc763c00fa66dc736c85d8c9652e4b (diff) |
ma docker: add dockertools to systemPackages
Diffstat (limited to 'makefu')
-rw-r--r-- | makefu/2configs/virtualisation/docker.nix | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/makefu/2configs/virtualisation/docker.nix b/makefu/2configs/virtualisation/docker.nix index 98fd980cc..ddef9e371 100644 --- a/makefu/2configs/virtualisation/docker.nix +++ b/makefu/2configs/virtualisation/docker.nix @@ -1,4 +1,8 @@ -{...}: +{ pkgs, ... }: { virtualisation.docker.enable = true; + environment.systemPackages = with pkgs;[ + docker + docker_compose + ]; } |