docker: format config
This commit is contained in:
parent
e27e9b584d
commit
0ca4b6910e
|
@ -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;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue