11 lines
243 B
Nix
11 lines
243 B
Nix
{ lib, config, pkgs, ... }: let
|
|
inherit (lib) mkIf;
|
|
inherit (config) conf;
|
|
in mkIf conf.containers.enable {
|
|
virtualisation.podman = {
|
|
enable = true;
|
|
dockerCompat = true;
|
|
};
|
|
|
|
environment.systemPackages = [ pkgs.distrobox ];
|
|
}
|