mirror of
https://github.com/henrysipp/omarchy-nix.git
synced 2026-06-05 18:29:26 -05:00
Lazygit fix for podman
This commit is contained in:
@@ -9,6 +9,7 @@ in {
|
||||
(import ./hyprland.nix inputs)
|
||||
(import ./system.nix)
|
||||
(import ./1password.nix)
|
||||
(import ./podman.nix)
|
||||
];
|
||||
|
||||
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;
|
||||
};
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user