2023-11-08 17:15:32 +01:00

22 lines
305 B
Nix

{ 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
];
};
}