mirror of
https://github.com/youwen5/nixos.git
synced 2025-01-18 21:22:10 -08:00
55 lines
1.2 KiB
Nix
Executable file
55 lines
1.2 KiB
Nix
Executable file
{ pkgs, ... }:
|
|
{
|
|
environment.systemPackages = with pkgs; [
|
|
ryujinx
|
|
mangohud
|
|
mangojuice
|
|
];
|
|
programs.steam = {
|
|
enable = true;
|
|
remotePlay.openFirewall = true;
|
|
dedicatedServer.openFirewall = true;
|
|
localNetworkGameTransfers.openFirewall = true;
|
|
gamescopeSession.enable = true;
|
|
};
|
|
|
|
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 =
|
|
pkgs: with pkgs; [
|
|
xorg.libXcursor
|
|
xorg.libXi
|
|
xorg.libXinerama
|
|
xorg.libXScrnSaver
|
|
libpng
|
|
libpulseaudio
|
|
libvorbis
|
|
stdenv.cc.cc.lib
|
|
libkrb5
|
|
(writeShellScriptBin "launch-gamescope" ''
|
|
(sleep 1; pgrep gamescope| xargs renice -n -11 -p)&
|
|
exec gamescope "$@"
|
|
'')
|
|
keyutils
|
|
];
|
|
};
|
|
};
|
|
}
|