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 = {
|
home = {
|
||||||
packages = with pkgs; [
|
packages = with pkgs; [
|
||||||
gamemode
|
gamemode
|
||||||
protonup-ng
|
|
||||||
prismlauncher
|
prismlauncher
|
||||||
unstable.bolt-launcher
|
unstable.bolt-launcher
|
||||||
];
|
];
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{...}: {
|
{pkgs, ...}: {
|
||||||
fileSystems."/home/sajenim/.local/share/Steam" = {
|
fileSystems."/home/sajenim/.local/share/Steam" = {
|
||||||
device = "/dev/disk/by-label/data";
|
device = "/dev/disk/by-label/data";
|
||||||
fsType = "btrfs";
|
fsType = "btrfs";
|
||||||
|
@ -10,6 +10,9 @@
|
||||||
|
|
||||||
programs.steam = {
|
programs.steam = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
extraCompatPackages = [
|
||||||
|
pkgs.unstable.proton-ge-bin
|
||||||
|
];
|
||||||
remotePlay.openFirewall = true;
|
remotePlay.openFirewall = true;
|
||||||
dedicatedServer.openFirewall = true;
|
dedicatedServer.openFirewall = true;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue