8 lines
192 B
Nix
8 lines
192 B
Nix
{ lib, config, pkgs, ... }: lib.mkIf config.withContainers {
|
|
virtualisation.podman = {
|
|
enable = true;
|
|
dockerCompat = true;
|
|
};
|
|
|
|
environment.systemPackages = [ pkgs.distrobox ];
|
|
}
|