24 lines
373 B
Nix
Raw Normal View History

2024-09-17 10:33:57 +02:00
{ inputs, lib, config, pkgs, ... }: {
2023-11-04 02:28:27 +01:00
2024-12-23 18:43:58 +01:00
imports = [ ./openttd.nix ./wow.nix ];
2023-11-04 02:28:27 +01:00
2024-04-14 07:57:07 +02:00
config = lib.mkIf (config.syscfg.make.game) {
2023-11-04 02:28:27 +01:00
home.packages = with pkgs; [
#games
steam
gamemode
gamescope
mangohud
prismlauncher
openttd-jgrpp
bottles
2024-09-23 18:52:21 +02:00
lutris
2024-09-17 10:33:57 +02:00
inputs.umu.packages.${pkgs.system}.umu
2024-09-23 19:03:47 +02:00
wine
2023-11-04 02:28:27 +01:00
];
};
}