10 lines
231 B
Nix
10 lines
231 B
Nix
|
{ ... }: {
|
||
|
virtualisation.docker = {
|
||
|
enable = true;
|
||
|
enableOnBoot = true;
|
||
|
autoPrune.enable = true;
|
||
|
autoPrune.dates = "weekly";
|
||
|
storageDriver = "btrfs";
|
||
|
liveRestore = true;
|
||
|
};
|
||
|
}
|