soraefir 221250699c
Some checks failed
Nix Build / build-nixos (push) Failing after 5m54s
Update & Umu & Wine
2024-09-17 10:33:57 +02:00

26 lines
416 B
Nix

{ inputs, lib, config, pkgs, ... }: {
imports = [ ./openttd.nix ];
config = lib.mkIf (config.syscfg.make.game) {
home.packages = with pkgs; [
# custom.simc
#games
steam
gamemode
gamescope
mangohud
prismlauncher
openttd-jgrpp
bottles
inputs.umu.packages.${pkgs.system}.umu
wineWow64Packages.waylandFull
proton-ge-bin
];
};
}