restructuring5

This commit is contained in:
cnst
2024-06-24 20:59:48 +02:00
parent c130053edf
commit d1b3c635c8
11 changed files with 120 additions and 61 deletions

View File

@@ -0,0 +1 @@
{ programs.nix-ld.enable = true; }

View File

@@ -0,0 +1 @@
{programs.solaar.enable = true;}

View File

@@ -0,0 +1,23 @@
{ pkgs, ... }:
{
programs.steam = {
enable = true;
package = pkgs.steam.override {
extraPkgs =
pkgs: with pkgs; [
xorg.libXcursor
xorg.libXi
xorg.libXinerama
xorg.libXScrnSaver
libpng
libpulseaudio
libvorbis
stdenv.cc.cc.lib
libkrb5
keyutils
gamescope
mangohud
];
};
};
}