docker: add prune flag
This commit is contained in:
parent
73d3c13fca
commit
e06710df1a
1 changed files with 4 additions and 3 deletions
|
@ -1,6 +1,4 @@
|
|||
{pkgs, ...}: {
|
||||
environment.systemPackages = with pkgs; [docker-compose];
|
||||
|
||||
_: {
|
||||
virtualisation.oci-containers.backend = "docker";
|
||||
virtualisation.docker = {
|
||||
enable = true;
|
||||
|
@ -8,6 +6,9 @@
|
|||
autoPrune = {
|
||||
enable = true;
|
||||
dates = "weekly";
|
||||
flags = [
|
||||
"--all"
|
||||
];
|
||||
};
|
||||
listenOptions = [
|
||||
"/run/docker.sock"
|
||||
|
|
Loading…
Reference in a new issue