15 lines
434 B
Nix
15 lines
434 B
Nix
{ self, inputs, ... }: {
|
|
flake.nixosModules.gaming = { pkgs, lib, ... }: {
|
|
programs.steam.enable = true;
|
|
programs.steam.gamescopeSession.enable = true;
|
|
programs.gamemode.enable = true;
|
|
environment.systemPackages = with pkgs; [
|
|
mangohud
|
|
protonup-ng
|
|
heroic
|
|
];
|
|
environment.sessionVariables = {
|
|
STEAM_EXTRA_COMPAT_TOOLS_PATH = "/home/user/.steam/root/compatibilitytools.d";
|
|
};
|
|
};
|
|
}
|