snowflake/modules/virtualisation.nix

20 lines
327 B
Nix
Raw Normal View History

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