22 lines
305 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; [
custom.simc
#games
steam
gamemode
gamescope
mangohud
prismlauncher
openttd-jgrpp
bottles
];
};
}