summaryrefslogtreecommitdiffstats
path: root/makefu/2configs/virtualisation/docker.nix
blob: 1c204db85969594950677b8c2d014dc4d11f437a (plain)
1
2
3
4
5
6
7
8
9
{ pkgs, config, ... }:
{
  virtualisation.docker.enable = true;
  environment.systemPackages = with pkgs;[
    docker
    docker-compose
  ];
  users.users.${config.krebs.build.user.name}.extraGroups = [ "docker" ];
}