nix-config/modules/games/default.nix
2024-06-23 17:27:58 +02:00

9 lines
155 B
Nix

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