snowflake/modules/virtualisation.nix

18 lines
301 B
Nix
Raw Normal View History

2024-01-27 19:18:33 -05:00
_: {
virtualisation.oci-containers.backend = "docker";
virtualisation.docker = {
enable = true;
enableOnBoot = true;
autoPrune = {
enable = true;
dates = "weekly";
2024-01-27 19:18:33 -05:00
flags = [
"--all"
];
};
listenOptions = [
"/run/docker.sock"
];
};
}