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