From 31c316d19cd974bb81a5d6de62142ff24db1c78e Mon Sep 17 00:00:00 2001 From: triethyl Date: Tue, 2 Sep 2025 10:48:21 -0400 Subject: reorganized directory structure --- features/system/gui/apps/steam.nix | 31 ------------------------------- 1 file changed, 31 deletions(-) delete mode 100644 features/system/gui/apps/steam.nix (limited to 'features/system/gui/apps/steam.nix') diff --git a/features/system/gui/apps/steam.nix b/features/system/gui/apps/steam.nix deleted file mode 100644 index 046b814..0000000 --- a/features/system/gui/apps/steam.nix +++ /dev/null @@ -1,31 +0,0 @@ -{ - config, - pkgs, - lib, - ... -}: let - cfg = config.features.gui.apps.steam; -in { - options.features.gui.apps.steam.enable = lib.mkEnableOption "steam"; - config = lib.mkIf cfg.enable { - programs.steam = { - enable = true; - remotePlay.openFirewall = true; - dedicatedServer.openFirewall = true; - gamescopeSession.enable = true; - protontricks.enable = true; - extraCompatPackages = with pkgs; [ - proton-ge-bin - ]; - }; - hardware.steam-hardware.enable = true; - programs.gamemode.enable = true; - environment.systemPackages = [pkgs.mangohud]; - - # Steam Launch Options - # Add this to 3D games: - # LD_PRELOAD="" gamescope --force-grab-cursor --backend sdl -bf -W 1600 -H 900 -- %command% - # Add this to 2D games: - # LD_PRELOAD="" gamescope -bf -W 1600 -H 900 -- %command% - }; -} -- cgit v1.2.3