move podman to nixosModules

This commit is contained in:
Vinzenz Schroeter 2025-09-13 18:03:16 +02:00
parent 3ba30b1a6d
commit d2b11ad2e2
4 changed files with 5 additions and 5 deletions

11
nixosModules/podman.nix Normal file
View file

@ -0,0 +1,11 @@
{
virtualisation = {
containers.enable = true;
podman = {
enable = true;
dockerCompat = true;
dockerSocket.enable = true;
autoPrune.enable = true;
};
};
}