nix-config/modules/containers/default.nix
2024-06-23 17:35:41 +02:00

8 lines
193 B
Nix

{ pkgs, lib, config, ... }: lib.mkIf(config.withContainers) {
virtualisation.podman = {
enable = true;
dockerCompat = true;
};
environment.systemPackages = [ pkgs.distrobox ];
}