nixos-configuration/modules/podman.nix

12 lines
198 B
Nix
Raw Permalink Normal View History

2024-11-24 13:18:43 +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;
};
};
}