summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDevin Finlinson <devin.finlinson@pm.me>2025-08-18 15:46:13 -0600
committerDevin Finlinson <devin.finlinson@pm.me>2025-08-18 15:46:13 -0600
commitdd4dab7175a8efcc5f93efffb94c449324e43ad5 (patch)
treeb602965fba919aa41bc1fc8c085cfe946827245e
parent86d0e4e07ec0147a7fc90c750aeaa75e1df5bf85 (diff)
too many games won't launch in hyprland
-rw-r--r--machines/zenbook/default.nix1
-rw-r--r--modules/nixos/steam.nix5
2 files changed, 6 insertions, 0 deletions
diff --git a/machines/zenbook/default.nix b/machines/zenbook/default.nix
index 61e20db..62f256c 100644
--- a/machines/zenbook/default.nix
+++ b/machines/zenbook/default.nix
@@ -80,6 +80,7 @@
# ciscoPacketTracer8
];
+ services.desktopManager.plasma6.enable = true;
services.displayManager = {
sddm = {
enable = true;
diff --git a/modules/nixos/steam.nix b/modules/nixos/steam.nix
index 583bb39..8c7256d 100644
--- a/modules/nixos/steam.nix
+++ b/modules/nixos/steam.nix
@@ -1,6 +1,11 @@
{ config, pkgs, ... }: {
+ programs.gamescope = {
+ enable = true;
+ capSysNice = true;
+ };
programs.steam = {
enable = true;
+ gamescopeSession.enable = true;
remotePlay.openFirewall = true;
dedicatedServer.openFirewall = true;
};