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