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

10 lines
223 B
Nix
Raw Normal View History

2017-09-09 18:58:50 +00:00
{ pkgs, config, ... }:
2017-06-26 14:01:50 +00:00
{
virtualisation.docker.enable = true;
environment.systemPackages = with pkgs;[
docker
docker_compose
];
2017-09-09 18:58:50 +00:00
users.extraUsers.${config.krebs.build.user.name}.extraGroups = [ "docker" ];
2017-06-26 14:01:50 +00:00
}