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