mirror of
https://github.com/youwen5/nixos.git
synced 2025-01-18 05:02:10 -08:00
feat: new gaming optimizations and mangohud
This commit is contained in:
parent
e38ab3270a
commit
a1865b410f
1 changed files with 18 additions and 0 deletions
|
@ -2,6 +2,8 @@
|
|||
{
|
||||
environment.systemPackages = with pkgs; [
|
||||
ryujinx
|
||||
mangohud
|
||||
mangojuice
|
||||
];
|
||||
programs.steam = {
|
||||
enable = true;
|
||||
|
@ -13,6 +15,22 @@
|
|||
|
||||
programs.gamescope.enable = true;
|
||||
|
||||
programs.gamemode = {
|
||||
enable = true;
|
||||
enableRenice = true;
|
||||
settings = {
|
||||
general = {
|
||||
renice = 10;
|
||||
};
|
||||
custom = {
|
||||
start = "${pkgs.libnotify}/bin/notify-send 'GameMode engaged'";
|
||||
end = "${pkgs.libnotify}/bin/notify-send 'GameMode disengaged'";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
users.users.youwen.extraGroups = [ "gamemode" ];
|
||||
|
||||
nixpkgs.config.packageOverrides = pkgs: {
|
||||
steam = pkgs.steam.override {
|
||||
extraPkgs =
|
||||
|
|
Loading…
Reference in a new issue