nixos-config/modules/system/steam/default.nix

37 lines
773 B
Nix
Raw Normal View History

2024-08-17 00:08:53 +02:00
{ pkgs, ... }:
2024-08-13 19:56:30 +02:00
{
2024-10-06 16:42:34 +02:00
# Workaround for Warhammer Login Issue
security.pki.certificateFiles = [ ../../../dotfiles/api.neocoregames.com.cert ];
2024-09-15 11:44:49 +02:00
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
];
};
};
2024-08-13 19:56:30 +02:00
programs.steam = {
enable = true;
remotePlay.openFirewall = true;
dedicatedServer.openFirewall = true;
localNetworkGameTransfers.openFirewall = true;
};
2024-08-25 10:44:43 +02:00
environment.systemPackages =
(with pkgs; [
gamescope
2024-10-15 21:04:08 +02:00
jq
2024-10-15 21:18:11 +02:00
jql
2024-08-25 10:44:43 +02:00
mangohud
protonup-qt
]);
2024-08-13 19:56:30 +02:00
}