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:
parent
c7d69eba89
commit
9cf14b2a8c
|
@ -6,7 +6,6 @@
|
|||
home = {
|
||||
packages = with pkgs; [
|
||||
gamemode
|
||||
protonup-ng
|
||||
prismlauncher
|
||||
unstable.bolt-launcher
|
||||
];
|
||||
|
|
|
@ -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;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue