istg i have to make smaller commits
This commit is contained in:
parent
1ed9ce6864
commit
29473532c7
28 changed files with 483 additions and 361 deletions
|
@ -1,9 +1,5 @@
|
|||
{pkgs, ...}: {
|
||||
#environment.systemPackages = [pkgs.steam-run];
|
||||
environment.systemPackages = [pkgs.appimage-run];
|
||||
|
||||
programs.nix-ld.enable = true;
|
||||
programs.nix-ld.libraries = with pkgs; [
|
||||
{pkgs, ...}: let
|
||||
list-of-libraries = with pkgs; [
|
||||
alsa-lib
|
||||
at-spi2-atk
|
||||
at-spi2-core
|
||||
|
@ -56,4 +52,14 @@
|
|||
xorg.libxshmfence
|
||||
zlib
|
||||
];
|
||||
in {
|
||||
programs.appimage = {
|
||||
enable = true;
|
||||
package = pkgs.appimage-run.override {
|
||||
extraPkgs = p: list-of-libraries;
|
||||
};
|
||||
};
|
||||
|
||||
programs.nix-ld.enable = true;
|
||||
programs.nix-ld.libraries = list-of-libraries;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue