12 lines
191 B
Nix
12 lines
191 B
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
virtualisation.docker.enable = true;
|
|
users.users.ccr.extraGroups = ["docker"];
|
|
environment.systemPackages = with pkgs; [
|
|
docker-compose
|
|
];
|
|
}
|