nix-config/modules/games/default.nix
2024-06-30 13:09:40 +02:00

11 lines
185 B
Nix

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