Gamemode & Steam Fix and Add Gamescope

- Move gamemode and steam to system packages
- Add gamescope to user packages
This commit is contained in:
Sravan Balaji
2024-03-27 16:36:59 -04:00
parent 7f320b85d4
commit 21882ba15a
4 changed files with 17 additions and 12 deletions

View File

@@ -5,5 +5,6 @@
./dbus.nix ./dbus.nix
./gnome-keyring.nix ./gnome-keyring.nix
./miscellaneous.nix ./miscellaneous.nix
./gaming.nix
]; ];
} }

View File

@@ -0,0 +1,15 @@
{ config, lib, pkgs, ... }:
{
programs.gamemode = {
enable = true;
# settings = {};
# enableRenice = true;
};
programs.steam = {
enable = true;
remotePlay.openFirewall = true;
gamescopeSession.enable = true;
};
}

View File

@@ -1,12 +1,6 @@
{ config, lib, pkgs, ... }: { config, lib, pkgs, ... }:
{ {
programs.steam = {
enable = true;
remotePlay.openFirewall = true;
gamescopeSession.enable = true;
};
home.packages = (with pkgs; [ home.packages = (with pkgs; [
bottles bottles
lutris lutris

View File

@@ -1,15 +1,10 @@
{ config, lib, pkgs, ... }: { config, lib, pkgs, ... }:
{ {
programs.gamemode = {
enable = true;
# settings = {};
# enableRenice = true;
};
home.packages = (with pkgs; [ home.packages = (with pkgs; [
mangohud mangohud
goverlay goverlay
vkbasalt vkbasalt
gamescope
]); ]);
} }