summaryrefslogtreecommitdiffstats
path: root/makefu/2configs/virtualisation/docker.nix
blob: b830bc39ea956b2f1787f8c5ef6c0d5e805638f5 (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" ];
}