nixos-config/nixos/home/apps/games.nix
2024-12-25 18:54:10 +01:00

57 lines
1.1 KiB
Nix

{
pkgs,
lib,
config,
...
}: {
options = {
app_list.games.enable =
lib.mkEnableOption "enable games";
};
config = lib.mkIf config.app_list.games.enable {
home.packages = with pkgs; [
vitetris
steam
superTuxKart
heroic
wine
(writeShellScriptBin "gs" ''
set -xeuo pipefail
gamescopeArgs=(
--adaptive-sync # VRR support
--hdr-enabled
--mangoapp # performance overlay
--rt
--steam
)
steamArgs=(
-pipewire-dmabuf
-tenfoot
)
mangoConfig=(
cpu_temp
gpu_temp
ram
vram
)
mangoVars=(
MANGOHUD=1
MANGOHUD_CONFIG="$(IFS=,; echo "''${mangoConfig[*]}")"
)
export "''${mangoVars[@]}"
exec gamescope "''${gamescopeArgs[@]}" -- steam "''${steamArgs[@]}"
'')
];
nixpkgs.config.allowUnfreePredicate = pkg:
builtins.elem (lib.getName pkg) [
"steam"
"steam-unwrapped"
];
};
}