22 lines
307 B
Nix
Raw Normal View History

2023-11-04 02:28:27 +01:00
{ lib, config, pkgs, ... }: {
imports = [ ./openttd.nix ];
config = lib.mkIf (config.homecfg.make.game) {
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
];
};
}