desktop-2024-09-01-16-05-22

This commit is contained in:
Alexander Szczepanski
2024-09-01 16:05:22 +02:00
parent c5657eec27
commit 6e49bca55d
3 changed files with 25 additions and 18 deletions

View File

@ -1,10 +1,19 @@
{ config, pkgs, lib, outputs, ... }:
{
services.flatpak.enable = true;
programs = {
gamescope = {
enable = true;
capSysNice = true;
capSysNice = false;
package = pkgs.unstable.gamescope;
};
gamemode = {
enable = true;
enableRenice = true;
};
steam = {
enable = true;
package = pkgs.unstable.steam.override {
@ -19,13 +28,14 @@
};
environment.systemPackages = with pkgs.unstable; [
(lutris.override {
extraPkgs = pkgs: [
pkgs.gamescope
pkgs.mangohud
];
})
# (lutris.override {
# extraPkgs = pkgs: [
# pkgs.gamescope
# pkgs.mangohud
# ];
# })
lutris
heroic
protontricks
@ -38,7 +48,6 @@
winetricks
# proton-ge-bin
pcsx2
gamescope
mangohud
];
}