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
+2
View File
@@ -37,6 +37,8 @@
# Use XCompose file
"XCOMPOSEFILE,~/.XCompose"
"EDITOR,nvim"
"DOCKER_HOST,unix://$XDG_RUNTIME_DIR/podman/podman.sock"
];
xwayland = {
-3
View File
@@ -15,8 +15,5 @@
}
];
};
sessionVariables = {
EDITOR = "nvim";
};
};
}
+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;
};
};
}
+3 -1
View File
@@ -57,7 +57,9 @@
# Development tools
github-desktop
gh
podman-tui
# Containers
docker-compose
podman-compose
];