System/modules/linux/programs/games.nix

33 lines
1.1 KiB
Nix
Raw Normal View History

2022-06-23 02:57:41 -04:00
{ config, lib, pkgs, inputs, ... }:
let np = config.nathan.programs;
in with lib; {
2022-06-23 02:57:41 -04:00
config = mkIf np.games {
environment.systemPackages = let
# https://github.com/Admicos/minecraft-wayland
glfw-patched = pkgs.glfw-wayland.overrideAttrs (attrs: {
patches = attrs.patches ++ [
../../../patches/minecraft/0003-Don-t-crash-on-calls-to-focus-or-icon.patch
../../../patches/minecraft/0004-wayland-fix-broken-opengl-screenshots-on-mutter.patch
2022-06-23 02:57:41 -04:00
];
});
stable-packages = with pkgs; [
# Dwarf fortress
(dwarf-fortress-packages.dwarf-fortress-full.override {
enableFPS = true;
})
2022-10-18 09:54:58 -04:00
# Prism Launcher minecraft stuff
inputs.prismlauncher.packages."${system}".prismlauncher
glfw-patched
];
unstable-packages =
with inputs.nixpkgs-unstable.legacyPackages."${pkgs.system}";
[
2022-06-23 02:57:41 -04:00
# Packwiz for maintaing modpacks
packwiz
];
in stable-packages ++ unstable-packages;
2022-07-18 16:37:10 -04:00
# Install steam
programs.steam.enable = true;
2022-06-23 02:57:41 -04:00
};
}