extra/docker: enable auto-prune

This commit is contained in:
Felix Buehler 2022-02-06 14:16:22 +01:00
parent 129fd1f6dc
commit 822afe8a11

View file

@ -1,8 +1,13 @@
{ config, pkgs, ... }:
{
virtualisation.docker.enable = true;
environment.systemPackages = with pkgs; [
docker
docker_compose
];
virtualisation.docker = {
enable = true;
autoPrune.enable = true;
};
}