System/modules/games.nix

18 lines
473 B
Nix
Raw Normal View History

2022-01-28 00:15:33 -05:00
{ pkgs, unstable, ... }: {
2022-04-19 20:01:28 -04:00
environment.systemPackages =
let
glfw-patched = unstable.glfw-wayland.overrideAttrs (attrs: {
patches = attrs.patches ++ [ ../patches/minecraft/0003-Don-t-crash-on-calls-to-focus-or-icon.patch ];
});
in
with unstable; [
# Dwarf fortress
(dwarf-fortress-packages.dwarf-fortress-full.override {
enableFPS = true;
})
# PolyMC minecraft stuff
polymc
glfw-patched
];
2022-01-28 00:15:33 -05:00
}