stockholm/makefu/2configs/virtualisation/docker.nix

9 lines
136 B
Nix
Raw Normal View History

{ pkgs, ... }:
2017-06-26 14:01:50 +00:00
{
virtualisation.docker.enable = true;
environment.systemPackages = with pkgs;[
docker
docker_compose
];
2017-06-26 14:01:50 +00:00
}