System/modules/linux/programs/games.nix

48 lines
1.3 KiB
Nix

{ config, lib, pkgs, inputs, ... }:
let np = config.nathan.programs;
in with lib; {
config = mkIf np.games {
environment.systemPackages = let
# https://github.com/Admicos/minecraft-wayland
glfw-patched =
pkgs.callPackage ../../../packages/glfw-minecraft-wayland { };
stable-packages = with pkgs; [
# Dwarf fortress
(dwarf-fortress-packages.dwarf-fortress-full.override {
enableFPS = true;
})
# Prism Launcher minecraft stuff
glfw-patched
gamescope
];
unstable-packages =
with inputs.nixpkgs-unstable.legacyPackages."${pkgs.system}"; [
# Packwiz for maintaing modpacks
packwiz
prismlauncher
];
in stable-packages ++ unstable-packages;
# Install steam
programs.steam.enable = true;
# Make steam work with gamescope
nixpkgs.config.packageOverrides = pkgs: {
steam = pkgs.steam.override {
extraPkgs = pkgs:
with pkgs; [
xorg.libXcursor
xorg.libXi
xorg.libXinerama
xorg.libXScrnSaver
libpng
libpulseaudio
libvorbis
stdenv.cc.cc.lib
libkrb5
keyutils
gtk3
];
};
};
};
}