Skip to content

Commit 0223917

Browse files
committed
Merge branch 'main' of ssh://github.com/ryan4yin/nix-config
2 parents 2efed28 + 125bce3 commit 0223917

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

home/linux/gui/base/gaming.nix

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,10 @@ in
4242
# a unified launcher for Windows games on Linux
4343
umu-launcher
4444

45+
# Sed-like editor for binary files
46+
# required by some games to fix problems
47+
bbe
48+
4549
# Mayuri Spec
4650

4751
# a GUI game launcher for Steam/GoG/Epic
@@ -79,6 +83,7 @@ in
7983
]);
8084

8185
# a GUI game launcher for Steam/GoG/Epic
86+
# https://lutris.net/games?ordering=-popularity
8287
programs.lutris = {
8388
enable = true;
8489
defaultWinePackage = pkgs-x64.proton-ge-bin;

hosts/idols-ai/ai/ollama.nix

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
pkgs-patched,
2+
pkgs,
33
...
44
}:
55
let
@@ -8,7 +8,7 @@ in
88
{
99
services.ollama = rec {
1010
enable = true;
11-
package = pkgs-patched.ollama;
11+
package = pkgs.ollama;
1212
acceleration = "cuda";
1313
host = "0.0.0.0";
1414
port = 11434;

modules/nixos/desktop/gaming.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ in
8484
programs.gamemode.enable = true;
8585

8686
# run anime games on Linux
87-
# https://github.com/an-anime-team/r
87+
# https://github.com/an-anime-team/
8888
networking.mihoyo-telemetry.block = true;
8989
environment.systemPackages =
9090
with aagl.packages."x86_64-linux";

0 commit comments

Comments
 (0)