18 lines
282 B
Nix
18 lines
282 B
Nix
|
{ pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
virtualisation.containers.enable = true;
|
||
|
|
||
|
virtualisation.podman = {
|
||
|
enable = true;
|
||
|
dockerCompat = true;
|
||
|
defaultNetwork.settings.dns_enabled = true;
|
||
|
};
|
||
|
|
||
|
environment.systemPackages = with pkgs; [
|
||
|
dive
|
||
|
podman-tui
|
||
|
podman-compose
|
||
|
];
|
||
|
}
|