mirror of
https://gitlab.com/Zaney/zaneyos.git
synced 2024-11-22 06:33:08 +01:00
Add distrobox support THANK YOU JERRY
This commit is contained in:
commit
82eba09c32
@ -7,6 +7,7 @@
|
||||
./autorun.nix
|
||||
./boot.nix
|
||||
./displaymanager.nix
|
||||
./distrobox.nix
|
||||
./flatpak.nix
|
||||
./hwclock.nix
|
||||
./intel-amd.nix
|
||||
|
11
config/system/distrobox.nix
Normal file
11
config/system/distrobox.nix
Normal file
@ -0,0 +1,11 @@
|
||||
{ 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];
|
||||
}
|
@ -65,6 +65,7 @@ in {
|
||||
printer = false;
|
||||
|
||||
# Enable Flatpak & Larger Programs
|
||||
distrobox = false;
|
||||
flatpak = false;
|
||||
kdenlive = true;
|
||||
blender = true;
|
||||
|
Loading…
Reference in New Issue
Block a user