This commit is contained in:
암냥 2026-07-05 13:31:18 +09:00
commit e6b0f38caa
No known key found for this signature in database
32 changed files with 44 additions and 88 deletions

View file

@ -0,0 +1,29 @@
{
config,
lib,
pkgs,
...
}:
{
virtualisation = {
containers.enable = true;
podman = {
enable = true;
dockerCompat = true;
defaultNetwork.settings.dns_enabled = true; # Required for containers under podman-compose to be able to talk to each other.
};
};
environment.systemPackages = with pkgs; [
podman-compose
podman
podman-tui
];
users.users.imnyang = {
extraGroups = [
"podman"
];
};
}