nixos/modules/packages/gaming.nix

14 lines
253 B
Nix
Raw Normal View History

2023-06-09 20:54:03 +08:00
{ pkgs, ... }@inputs:
{
config =
{
environment.systemPackages = [ inputs.config.nur.repos.ataraxiasjel.proton-ge ];
2023-06-14 09:16:14 +08:00
programs =
2023-06-09 20:54:03 +08:00
{
2023-06-14 09:16:14 +08:00
anime-game-launcher.enable = true;
honkers-railway-launcher.enable = true;
steam.enable = true;
2023-06-09 20:54:03 +08:00
};
};
}