infra/module/aspect/virtualisation/podman.nix

25 lines
525 B
Nix
Raw Normal View History

2025-12-01 13:23:24 +07:00
{
den.aspects = {
podman = {
nixos =
{ pkgs, ... }:
{
virtualisation = {
containers = {
enable = true;
};
podman = {
enable = true;
dockerCompat = true;
defaultNetwork.settings.dns_enabled = true;
};
};
environment.systemPackages = [
pkgs.distrobox
pkgs.lazydocker
pkgs.docker-compose
];
};
};
};
}