2026-03-14 22:22:56 +01:00

40 lines
594 B
Nix

{ pkgs, ... }:
{
# Steam
programs = {
steam = {
enable = true;
gamescopeSession = {
enable = true;
};
};
gamemode = {
enable = true;
};
};
# Proton GE
environment = {
sessionVariables = {
STEAM_EXTRA_COMPAT_TOOLS_PATHS =
"/home/alex/.steam/root/compatibilitytools.d";
};
};
# Programmes requis
environment = {
systemPackages = with pkgs; [
mangohud
protonup-ng
protonup-qt
protontricks
protonplus
lutris
heroic
bottles
prismlauncher
];
};
}