Files
nixconfig/modules/home/gui/games/default.nix
2025-09-06 15:39:03 +02:00

24 lines
360 B
Nix

{ inputs, lib, config, pkgs, ... }: {
imports = [ ./openttd.nix ./wow.nix ];
config = lib.mkIf (config.syscfg.make.game) {
home.packages = with pkgs; [
#games
# steam
gamemode
gamescope
mangohud
prismlauncher
openttd-jgrpp
bottles
lutris
unstable.umu-launcher
# wine
];
};
}