24 lines
368 B
Nix
24 lines
368 B
Nix
{ inputs, lib, config, pkgs, ... }: {
|
|
|
|
imports = [ ./openttd.nix ./wow.nix ];
|
|
|
|
config = lib.mkIf (config.syscfg.make.game) {
|
|
|
|
home.packages = with pkgs; [
|
|
|
|
#games
|
|
steam
|
|
gamemode
|
|
gamescope
|
|
mangohud
|
|
prismlauncher
|
|
openttd-jgrpp
|
|
bottles
|
|
lutris
|
|
inputs.pkgs.unstable.umu-launcher
|
|
wine
|
|
];
|
|
};
|
|
|
|
}
|