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-16 23:06:28 +01:00
|
|
|
# custom.simc
|
2023-11-04 02:28:27 +01:00
|
|
|
|
|
|
|
#games
|
|
|
|
steam
|
|
|
|
gamemode
|
|
|
|
gamescope
|
|
|
|
mangohud
|
|
|
|
prismlauncher
|
|
|
|
openttd-jgrpp
|
|
|
|
bottles
|
|
|
|
];
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|