nixos-config/modules/home/gaming.nix

29 lines
409 B
Nix
Raw Normal View History

2023-11-05 17:56:55 +01:00
{ pkgs, config, inputs, ... }:
{
2023-11-05 11:40:44 +01:00
home.packages = with pkgs;[
2024-02-10 14:57:49 +01:00
## Utils
2023-11-05 11:40:44 +01:00
gamemode
gamescope
winetricks
2024-03-04 15:16:49 +01:00
inputs.nix-gaming.packages.${pkgs.system}.wine-ge
2024-02-10 14:57:49 +01:00
## Cli games
2023-12-14 15:16:39 +01:00
_2048-in-terminal
2023-12-14 15:41:36 +01:00
vitetris
2024-01-02 17:54:42 +01:00
nethack
2023-12-14 15:41:36 +01:00
2024-02-10 14:57:49 +01:00
## Celeste
celeste-classic
celeste-classic-pm
2024-01-02 14:39:10 +01:00
2024-02-10 14:57:49 +01:00
## Doom
2024-03-04 15:16:49 +01:00
# gzdoom
2024-02-07 17:02:13 +01:00
crispy-doom
2024-01-02 21:18:50 +01:00
2024-02-10 14:57:49 +01:00
## Emulation
2024-04-09 23:01:21 +02:00
sameboy
2024-01-03 16:51:30 +01:00
# cemu
2024-02-10 14:57:49 +01:00
# dolphin-emu
2023-11-05 11:40:44 +01:00
];
}