chore: get rid of proton 9.27

This commit is contained in:
matt1432 2025-06-21 03:05:24 -04:00
commit e4c9f45ab2
5 changed files with 4 additions and 20 deletions
configurations/binto/modules/nix-gaming
devShells
packages

View file

@ -15,7 +15,6 @@
remotePlay.openFirewall = true;
extraCompatPackages = [
pkgs.selfPackages.proton-ge-9-27
pkgs.selfPackages.proton-ge-latest
];

View file

@ -9,11 +9,14 @@ This directory contains every derivations for devShells exposed by this flake.
| `c-lang` | c-lang shell to be loaded by my Neovim config dynamically. |
| `csharp` | csharp shell to be loaded by my Neovim config dynamically. |
| `flake` | Shell providing some utility scripts concerning the main flake. |
| `golang` | golang shell to be loaded by my Neovim config dynamically. |
| `json` | json shell to be loaded by my Neovim config dynamically. |
| `kotlin` | kotlin shell to be loaded by my Neovim config dynamically. |
| `lua` | lua shell to be loaded by my Neovim config dynamically. |
| `markdown` | markdown shell to be loaded by my Neovim config dynamically. |
| `netdaemon` | Shell that makes sure we have the right dotnet-sdk version for NetDaemon development. |
| `node` | Shell that provides `bumpNpmDeps`, node and typescript. |
| `python` | python shell to be loaded by my Neovim config dynamically. |
| `qml` | qml shell to be loaded by my Neovim config dynamically. |
| `rust` | rust shell to be loaded by my Neovim config dynamically. |
| `subtitles-dev` | Shell that provides the dependencies for my subtitle management scripts. |

View file

@ -10,7 +10,7 @@ This directory contains every derivations for packages exposed by this flake.
| `gpu-screen-recorder` | Screen recorder that has minimal impact on system performance by recording a window using the GPU only. | https://git.dec05eba.com/gpu-screen-recorder/about |
| `homepage` | Highly customisable dashboard with Docker and service API integrations. | https://gethomepage.dev |
| `jdownloader-cli` | Command line interface to JDownloader based on jdownloader-go library. | https://github.com/rkosegi/jdownloader-cli |
| `jmusicbot` | Discord music bot that's easy to set up and run yourself | https://github.com/jagrosh/MusicBot |
| `jmusicbot` | Discord music bot that's easy to set up and run yourself | |
| `komf` | Komf is a tool that fetches metadata and thumbnails for your digital comic book library. | https://github.com/Snd-R/komf |
| `libratbag` | Configuration library for gaming mice | https://github.com/libratbag/libratbag |
| `librespot-auth` | A simple program for populating a credentials.json via Spotify's zeroconf authentication. | https://github.com/dspearson/librespot-auth |

View file

@ -39,7 +39,6 @@
inherit mkVersion;
};
proton-ge-9-27 = final.callPackage ./proton-ge-9-27 {};
proton-ge-latest = final.callPackage ./proton-ge-latest {};
protonhax = final.callPackage ./protonhax {};

View file

@ -1,17 +0,0 @@
{
# nix build inputs
fetchzip,
# deps
proton-ge-bin,
...
}:
proton-ge-bin.overrideAttrs (o: rec {
version = "9.27";
src = fetchzip {
url = "https://github.com/GloriousEggroll/proton-ge-custom/releases/download/${version}/${version}.tar.gz";
hash = "sha256-70au1dx9co3X+X7xkBCDGf1BxEouuw3zN+7eDyT7i5c=";
};
preFixup = null;
})