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

10 lines
218 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
];
2019-09-25 12:19:11 +00:00
users.users.${config.krebs.build.user.name}.extraGroups = [ "docker" ];
2017-06-26 14:01:50 +00:00
}