Lazygit fix for podman

This commit is contained in:
Henry Sipp
2025-06-28 14:05:38 -05:00
parent a12fd2f710
commit 6c4c666bb5
5 changed files with 17 additions and 4 deletions
+11
View File
@@ -0,0 +1,11 @@
{pkgs, ...}: {
virtualisation.containers.enable = true;
virtualisation = {
podman = {
enable = true;
dockerCompat = true;
dockerSocket.enable = true;
defaultNetwork.settings.dns_enabled = true;
};
};
}