System/modules/games.nix

12 lines
251 B
Nix
Raw Normal View History

2022-01-28 00:15:33 -05:00
{ pkgs, unstable, ... }: {
environment.systemPackages = with unstable; [
# Dwarf fortress
(dwarf-fortress-packages.dwarf-fortress-full.override {
enableFPS = true;
})
2022-04-19 19:39:39 -04:00
# PolyMC minecraft stuff
polymc
glfw-wayland
2022-01-28 00:15:33 -05:00
];
}