nix-config/modules/games/default.nix
2024-06-26 15:10:55 +02:00

12 lines
226 B
Nix

{ lib, config, pkgs, ... }: lib.mkIf (config.withGames) {
programs.steam = {
enable = true;
gamescopeSession.enabe = true;
};
programs.gamescope = {
enable = true;
};
programs.gamemode.enable = true;
}