From 9cf14b2a8c041745f9fab5f22c0d7b4a149cfe66 Mon Sep 17 00:00:00 2001 From: jasmine Date: Tue, 18 Feb 2025 14:11:03 +0800 Subject: [PATCH] Remove deprecated protonup-ng and add missing proton-ge-bin compatibility - Removed `protonup-ng` from home-manager configuration for games, as it is no longer used. - Added `unstable.proton-ge-bin` to Steam's compatibility packages in the NixOS user configuration. --- home-manager/sajenim/features/games/default.nix | 1 - nixos/common/users/sajenim/steam/default.nix | 5 ++++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/home-manager/sajenim/features/games/default.nix b/home-manager/sajenim/features/games/default.nix index 039a3e2..32f8984 100644 --- a/home-manager/sajenim/features/games/default.nix +++ b/home-manager/sajenim/features/games/default.nix @@ -6,7 +6,6 @@ home = { packages = with pkgs; [ gamemode - protonup-ng prismlauncher unstable.bolt-launcher ]; diff --git a/nixos/common/users/sajenim/steam/default.nix b/nixos/common/users/sajenim/steam/default.nix index bb6fcf7..d719222 100644 --- a/nixos/common/users/sajenim/steam/default.nix +++ b/nixos/common/users/sajenim/steam/default.nix @@ -1,4 +1,4 @@ -{...}: { +{pkgs, ...}: { fileSystems."/home/sajenim/.local/share/Steam" = { device = "/dev/disk/by-label/data"; fsType = "btrfs"; @@ -10,6 +10,9 @@ programs.steam = { enable = true; + extraCompatPackages = [ + pkgs.unstable.proton-ge-bin + ]; remotePlay.openFirewall = true; dedicatedServer.openFirewall = true; };