parent
b41f897c71
commit
e4c9f45ab2
5 changed files with 4 additions and 20 deletions
configurations/binto/modules/nix-gaming
devShells
packages
|
@ -15,7 +15,6 @@
|
||||||
remotePlay.openFirewall = true;
|
remotePlay.openFirewall = true;
|
||||||
|
|
||||||
extraCompatPackages = [
|
extraCompatPackages = [
|
||||||
pkgs.selfPackages.proton-ge-9-27
|
|
||||||
pkgs.selfPackages.proton-ge-latest
|
pkgs.selfPackages.proton-ge-latest
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
|
@ -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. |
|
| `c-lang` | c-lang shell to be loaded by my Neovim config dynamically. |
|
||||||
| `csharp` | csharp 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. |
|
| `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. |
|
| `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. |
|
| `lua` | lua shell to be loaded by my Neovim config dynamically. |
|
||||||
| `markdown` | markdown 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. |
|
| `netdaemon` | Shell that makes sure we have the right dotnet-sdk version for NetDaemon development. |
|
||||||
| `node` | Shell that provides `bumpNpmDeps`, node and typescript. |
|
| `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. |
|
| `qml` | qml shell to be loaded by my Neovim config dynamically. |
|
||||||
| `rust` | rust 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. |
|
| `subtitles-dev` | Shell that provides the dependencies for my subtitle management scripts. |
|
||||||
|
|
|
@ -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 |
|
| `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 |
|
| `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 |
|
| `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 |
|
| `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 |
|
| `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 |
|
| `librespot-auth` | A simple program for populating a credentials.json via Spotify's zeroconf authentication. | https://github.com/dspearson/librespot-auth |
|
||||||
|
|
|
@ -39,7 +39,6 @@
|
||||||
inherit mkVersion;
|
inherit mkVersion;
|
||||||
};
|
};
|
||||||
|
|
||||||
proton-ge-9-27 = final.callPackage ./proton-ge-9-27 {};
|
|
||||||
proton-ge-latest = final.callPackage ./proton-ge-latest {};
|
proton-ge-latest = final.callPackage ./proton-ge-latest {};
|
||||||
|
|
||||||
protonhax = final.callPackage ./protonhax {};
|
protonhax = final.callPackage ./protonhax {};
|
||||||
|
|
|
@ -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;
|
|
||||||
})
|
|
Loading…
Add table
Add a link
Reference in a new issue