snowflake/modules/virtualisation.nix
2024-01-27 19:18:33 -05:00

18 lines
301 B
Nix

_: {
virtualisation.oci-containers.backend = "docker";
virtualisation.docker = {
enable = true;
enableOnBoot = true;
autoPrune = {
enable = true;
dates = "weekly";
flags = [
"--all"
];
};
listenOptions = [
"/run/docker.sock"
];
};
}