mirror of
https://gitlab.com/Zaney/zaneyos.git
synced 2025-01-25 13:48:35 +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];
|
||
|
}
|