nixos-config/.modules/services/docker.nix
2023-01-31 18:11:19 -05:00

8 lines
No EOL
156 B
Nix

_: { config, pkgs, lib, ... }:
{
virtualisation.docker = {
enable = true;
liveRestore = false;
autoPrune.enable = true;
};
}