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
+1
View File
@@ -9,6 +9,7 @@ in {
(import ./hyprland.nix inputs)
(import ./system.nix)
(import ./1password.nix)
(import ./podman.nix)
];
environment.systemPackages = packages.systemPackages;
+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;
};
};
}