nixos-configuration/modules/podman.nix

13 lines
198 B
Nix
Raw Normal View History

2024-10-27 12:42:26 +01:00
_:
2024-10-27 12:33:35 +01:00
{
2024-10-26 18:15:50 +02:00
virtualisation = {
containers.enable = true;
podman = {
enable = true;
dockerCompat = true;
dockerSocket.enable = true;
autoPrune.enable = true;
};
};
}