nixos/system/podman.nix

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

11 lines
116 B
Nix
Raw Normal View History

2024-02-27 21:20:00 +00:00
{ pkgs, ... }:
2024-02-27 03:43:43 +00:00
{
virtualisation = {
podman = {
enable = true;
dockerCompat = true;
};
};
}