grimm-nixos-laptop/common/gaming.nix

74 lines
1.5 KiB
Nix
Raw Normal View History

2024-05-07 23:31:41 +02:00
{
pkgs,
config,
lib,
...
}:
2024-04-10 16:51:28 +02:00
let
2024-05-11 22:55:59 +02:00
inherit (config.grimmShared) enable gaming;
2024-05-30 22:12:15 +02:00
inherit (lib)
mkIf
getExe
mkEnableOption
optional
;
2024-04-10 16:51:28 +02:00
in
{
2024-05-11 22:55:59 +02:00
config = mkIf (enable && gaming) {
programs.steam = {
enable = true;
gamescopeSession.enable = true;
gamescopeSession.env = {
DRI_PRIME = "1";
2024-03-24 16:59:47 +01:00
};
2024-05-11 22:55:59 +02:00
extraCompatPackages = with pkgs; [ proton-ge-bin ];
# extest.enable = true;
};
2024-03-24 16:59:47 +01:00
2024-05-11 22:55:59 +02:00
programs.gamemode = {
enable = true;
settings = {
general = {
inhibit_screensaver = 0;
renice = 10;
};
custom = {
start = "${lib.getExe pkgs.libnotify} 'GameMode started'";
end = "${lib.getExe pkgs.libnotify} 'GameMode ended'";
2024-03-24 16:59:47 +01:00
};
};
2024-05-11 22:55:59 +02:00
};
2024-03-24 16:59:47 +01:00
2024-08-15 14:59:23 +02:00
programs.the-honkers-railway-launcher.enable = true;
2024-05-11 22:55:59 +02:00
services.udev.packages = [ pkgs.wooting-udev-rules ];
2024-03-24 16:59:47 +01:00
2024-05-11 22:55:59 +02:00
environment.sessionVariables = {
GAMEMODERUNEXEC = "env DRI_PRIME=1";
2024-05-07 23:31:41 +02:00
};
2024-05-30 22:12:15 +02:00
environment.systemPackages =
with pkgs;
[
heroic
prismlauncher
mangohud
the-powder-toy
factorio
pactorio
(symlinkJoin {
name = "osu";
paths = [
(writeShellScriptBin "osu!" ''
exec gamemoderun ${getExe osu-lazer-bin}
'')
osu-lazer-bin
];
})
]
++ optional (!isNull factorio.passthru.updateScript) factorio;
2024-05-11 22:55:59 +02:00
};
options.grimmShared.gaming = mkEnableOption "enables steam, heroic, prism and gamemoded";
2024-03-24 16:59:47 +01:00
}