diff --git a/configurations/binto/modules/nix-gaming/default.nix b/configurations/binto/modules/nix-gaming/default.nix
index ee8e6edd..6345885c 100644
--- a/configurations/binto/modules/nix-gaming/default.nix
+++ b/configurations/binto/modules/nix-gaming/default.nix
@@ -15,7 +15,6 @@
       remotePlay.openFirewall = true;
 
       extraCompatPackages = [
-        pkgs.selfPackages.proton-ge-9-27
         pkgs.selfPackages.proton-ge-latest
       ];
 
diff --git a/devShells/README.md b/devShells/README.md
index dbb553e6..335609d9 100644
--- a/devShells/README.md
+++ b/devShells/README.md
@@ -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. |
diff --git a/packages/README.md b/packages/README.md
index a1ae4798..69bb6728 100644
--- a/packages/README.md
+++ b/packages/README.md
@@ -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 |
diff --git a/packages/default.nix b/packages/default.nix
index c458f4c3..707c1ba5 100644
--- a/packages/default.nix
+++ b/packages/default.nix
@@ -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 {};
diff --git a/packages/proton-ge-9-27/default.nix b/packages/proton-ge-9-27/default.nix
deleted file mode 100644
index d7839c65..00000000
--- a/packages/proton-ge-9-27/default.nix
+++ /dev/null
@@ -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;
-})