mirror of
https://gitlab.com/Zaney/zaneyos.git
synced 2024-12-11 07:50:40 +01:00
12 lines
289 B
Nix
12 lines
289 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
let inherit (import ../../options.nix) distrobox; in
|
|
lib.mkIf (distrobox == true) {
|
|
virtualisation.podman = {
|
|
enable = true;
|
|
dockerCompat = true;
|
|
defaultNetwork.settings.dns_enabled = true;
|
|
};
|
|
environment.systemPackages = [pkgs.distrobox];
|
|
}
|