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

12 lines
211 B
Nix

{ lib, config, pkgs, ... }: lib.mkIf (config.withGames) {
environment.systemPackages = with pkgs; [
gamescope
prismlauncher
itch
minigalaxy
];
programs.steam = {
enable = true;
};
}