mirror of
https://github.com/henrysipp/omarchy-nix.git
synced 2026-06-13 21:29:57 -05:00
Lazygit fix for podman
This commit is contained in:
@@ -37,6 +37,8 @@
|
|||||||
|
|
||||||
# Use XCompose file
|
# Use XCompose file
|
||||||
"XCOMPOSEFILE,~/.XCompose"
|
"XCOMPOSEFILE,~/.XCompose"
|
||||||
|
"EDITOR,nvim"
|
||||||
|
"DOCKER_HOST,unix://$XDG_RUNTIME_DIR/podman/podman.sock"
|
||||||
];
|
];
|
||||||
|
|
||||||
xwayland = {
|
xwayland = {
|
||||||
|
|||||||
@@ -15,8 +15,5 @@
|
|||||||
}
|
}
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
sessionVariables = {
|
|
||||||
EDITOR = "nvim";
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -9,6 +9,7 @@ in {
|
|||||||
(import ./hyprland.nix inputs)
|
(import ./hyprland.nix inputs)
|
||||||
(import ./system.nix)
|
(import ./system.nix)
|
||||||
(import ./1password.nix)
|
(import ./1password.nix)
|
||||||
|
(import ./podman.nix)
|
||||||
];
|
];
|
||||||
|
|
||||||
environment.systemPackages = packages.systemPackages;
|
environment.systemPackages = packages.systemPackages;
|
||||||
|
|||||||
@@ -0,0 +1,11 @@
|
|||||||
|
{pkgs, ...}: {
|
||||||
|
virtualisation.containers.enable = true;
|
||||||
|
virtualisation = {
|
||||||
|
podman = {
|
||||||
|
enable = true;
|
||||||
|
dockerCompat = true;
|
||||||
|
dockerSocket.enable = true;
|
||||||
|
defaultNetwork.settings.dns_enabled = true;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
||||||
@@ -57,7 +57,9 @@
|
|||||||
# Development tools
|
# Development tools
|
||||||
github-desktop
|
github-desktop
|
||||||
gh
|
gh
|
||||||
podman-tui
|
|
||||||
|
# Containers
|
||||||
|
docker-compose
|
||||||
podman-compose
|
podman-compose
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user