nixos/desktop/gamescope.nix

12 lines
273 B
Nix
Raw Normal View History

{...}: {
imports = [./sddm.nix];
programs.gamescope.enable = true;
programs.steam = {
enable = true;
remotePlay.openFirewall = true;
gamescopeSession.enable = true;
};
hardware.steam-hardware.enable = true;
hardware.opengl.driSupport32Bit = true;
}