26 lines
416 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-17 10:33:57 +02:00
inputs.umu.packages.${pkgs.system}.umu
wineWow64Packages.waylandFull
proton-ge-bin
2023-11-04 02:28:27 +01:00
];
};
}