organize packages

This commit is contained in:
4DBug
2026-03-03 12:08:01 -06:00
parent 60805bcace
commit a21805e59b
42 changed files with 320 additions and 266 deletions

View File

@@ -0,0 +1,14 @@
{ ... }: {
den.aspects.appimage = {
nixos = { pkgs, ... }: {
environment.systemPackages = with pkgs; [
appimage-run
];
programs.appimage = {
enable = true;
binfmt = true;
};
};
};
}

View File

@@ -0,0 +1,5 @@
{ den, ... }: {
den.aspects.compatibility = {
includes = with den.aspects; [ wine appimage nix-ld ];
};
}

View File

@@ -0,0 +1,23 @@
{ ... }: {
den.aspects.nix-ld = {
nixos = { pkgs, options, ... }: {
programs.nix-ld = {
enable = true;
libraries = options.programs.nix-ld.libraries.default ++ (with pkgs; [
libxml2
udev
gcc
egl-wayland
mesa
libglvnd
wayland
libX11
libXcursor
libXrandr
libXi
]);
};
};
};
}

View File

@@ -0,0 +1,10 @@
{ ... }: {
den.aspects.wine = {
nixos = { pkgs, ... }: {
environment.systemPackages = with pkgs; [
wine64
wineWow64Packages.full
];
};
};
}