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.
This commit is contained in:
♥ Minnie ♥ 2025-02-18 14:11:03 +08:00
parent c7d69eba89
commit 9cf14b2a8c
Signed by: jasmine
GPG key ID: 8563E358D4E8040E
2 changed files with 4 additions and 2 deletions

View file

@ -6,7 +6,6 @@
home = {
packages = with pkgs; [
gamemode
protonup-ng
prismlauncher
unstable.bolt-launcher
];

View file

@ -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;
};