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

10 lines
218 B
Nix

{ pkgs, config, ... }:
{
virtualisation.docker.enable = true;
environment.systemPackages = with pkgs;[
docker
docker-compose
];
users.users.${config.krebs.build.user.name}.extraGroups = [ "docker" ];
}