28 lines
455 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
imports = [ ./openttd.nix ];
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; [
2023-11-17 09:55:29 +01:00
# custom.simc
2023-11-04 02:28:27 +01:00
#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 18:52:21 +02:00
#wineWow64Packages.unstableFull
wineWow64Packages.full
# wine64
2023-11-04 02:28:27 +01:00
];
};
}