added distrobox

This commit is contained in:
twoneis 2024-06-23 17:35:41 +02:00
parent 6ec7119199
commit 7240b13ad3

View file

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