desktop-2024-07-09-11-21-50
This commit is contained in:
@ -3,25 +3,29 @@ let
|
||||
unstable = import <nixos-unstable> {
|
||||
config.allowUnfree = true;
|
||||
config.packageOverrides = pkgs: {
|
||||
steam = pkgs.steam.override {
|
||||
extraPkgs = pkgs: with unstable.pkgs; [ gamescope mangohud ncurses6 ];
|
||||
};
|
||||
lutris = pkgs.lutris.override {
|
||||
extraPkgs = pkgs: with unstable.pkgs; [ gamescope mangohud ];
|
||||
};
|
||||
};
|
||||
};
|
||||
in {
|
||||
in
|
||||
{
|
||||
programs = {
|
||||
gamescope.enable = true;
|
||||
steam = {
|
||||
enable = true;
|
||||
package = unstable.pkgs.steam;
|
||||
package = pkgs.steam.override {
|
||||
extraPkgs = pkgs: with pkgs; [
|
||||
gamescope
|
||||
mangohud
|
||||
libkrb5
|
||||
keyutils
|
||||
];
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
environment.systemPackages = with unstable.pkgs; [
|
||||
goverlay
|
||||
lutris
|
||||
protontricks
|
||||
protonup-qt
|
||||
|
Reference in New Issue
Block a user