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
|
2022-05-02 02:00:58 -04:00
|
|
|
(pkgs.dwarf-fortress-packages.dwarf-fortress-full.override {
|
2022-04-19 20:01:28 -04:00
|
|
|
enableFPS = true;
|
|
|
|
})
|
|
|
|
# PolyMC minecraft stuff
|
|
|
|
polymc
|
|
|
|
glfw-patched
|
|
|
|
];
|
2022-01-28 00:15:33 -05:00
|
|
|
}
|