docker: format config

This commit is contained in:
Leonardo Eugênio 2024-06-11 09:30:29 -03:00
parent e27e9b584d
commit 0ca4b6910e

View file

@ -1,10 +1,18 @@
{ pkgs, ... }: { pkgs, ... }:
{ {
services.flatpak.enable = true; services.flatpak.enable = true;
virtualisation.docker.enable = true;
virtualisation.docker.autoPrune.enable = true; virtualisation.docker = {
virtualisation.docker.autoPrune.dates = "monthly"; enable = true;
virtualisation.docker.autoPrune.flags = [ "--all --volumes" ]; autoPrune = {
enable = true;
dates = "monthly";
flags = [
"--all"
"--volumes"
];
};
};
programs.extra-container.enable = true; programs.extra-container.enable = true;