nixfleet/modules/docker/default.nix
2023-01-05 11:35:48 +01:00

12 lines
191 B
Nix

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