trying to get GTK4 apps working

This commit is contained in:
Tyler Mayoff 2025-09-14 22:28:34 -04:00
parent 625725b734
commit e65d7c392e
4 changed files with 82 additions and 26 deletions

View file

@ -0,0 +1,16 @@
{pkgs, ...}: {
virtualisation.containers.enable = true;
virtualisation = {
podman = {
enable = true;
dockerCompat = true;
};
};
environment.systemPackages = with pkgs; [
dive
podman-tui
podman-compose
];
}