nixos/extra/docker.nix
2022-02-06 14:16:26 +01:00

13 lines
189 B
Nix

{ config, pkgs, ... }:
{
environment.systemPackages = with pkgs; [
docker
docker_compose
];
virtualisation.docker = {
enable = true;
autoPrune.enable = true;
};
}