vixen: Steam

This commit is contained in:
Sridhar Ratnakumar 2024-10-23 16:35:33 -04:00
parent 89b76cb924
commit df1856ea79
No known key found for this signature in database
2 changed files with 8 additions and 4 deletions

View file

@ -12,6 +12,7 @@ in
(self + /modules/nixos/linux/gui/hyprland.nix)
(self + /modules/nixos/linux/gui/gnome.nix)
(self + /modules/nixos/linux/gui/desktopish/fonts.nix)
(self + /modules/nixos/linux/gui/desktopish/steam.nix)
(self + /modules/nixos/linux/gui/_1password.nix)
];

View file

@ -1,8 +1,11 @@
{ pkgs, ... }: {
environment.systemPackages = with pkgs; [
steam
];
programs.steam = {
enable = true;
remotePlay.openFirewall = true; # Open ports in the firewall for Steam Remote Play
dedicatedServer.openFirewall = true; # Open ports in the firewall for Source Dedicated Server
localNetworkGameTransfers.openFirewall = true; # Open ports in the firewall for Steam Local Network Game Transfers
};
# https://github.com/NixOS/nixpkgs/issues/47932#issuecomment-447508411
hardware.opengl.driSupport32Bit = true;
# hardware.opengl.driSupport32Bit = true;
}