nixos/system/podman.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
196 B
Nix
Raw Normal View History

2024-02-27 21:20:00 +00:00
{ pkgs, ... }:
2024-02-27 03:43:43 +00:00
{
virtualisation = {
2024-07-21 11:16:26 +00:00
containers.enable = true;
2024-02-27 03:43:43 +00:00
podman = {
enable = true;
dockerCompat = true;
2024-07-21 11:16:26 +00:00
defaultNetwork.settings.dns_enabled = true;
2024-02-27 03:43:43 +00:00
};
};
}