nixos/system/steam.nix
Evie Litherland-Smith 415460db2d Use anyrun again with new theme/config
Do some retheming of hyprland/rofi/swaync for better consistency, add
transparency + blur to some missing bits

Add prismlauncher for minecraft
2023-09-24 10:29:51 +01:00

24 lines
535 B
Nix

{ lib, pkgs, ... }:
{
environment.systemPackages = with pkgs; [ prismlauncher ];
nixpkgs.config.allowUnfreePredicate = pkg:
builtins.elem (lib.getName pkg) [ "steam" "steam-original" "steam-run" ];
hardware = {
opengl.driSupport32Bit = true;
steam-hardware.enable = true;
};
programs = {
xwayland.enable = true;
gamescope = {
enable = true;
capSysNice = true;
};
steam = {
enable = true;
remotePlay.openFirewall = true;
gamescopeSession.enable = true;
};
};
}