nix-config/games.nix
Donovan Glover 4cdf7d0e04
nix: Simplify
This commit removes some premature modularization to make it easier to
see and manipulate everything at once.
2023-06-04 09:35:40 -04:00

17 lines
300 B
Nix

{ pkgs, lib, ... }:
{
programs.gamemode.enable = true;
environment.systemPackages = with pkgs; [
(pkgs.callPackage ./packages/srb2 { })
slade
typespeed
osu-lazer-bin
];
nixpkgs.config.allowUnfreePredicate = pkg: builtins.elem (lib.getName pkg) [
"osu-lazer-bin"
];
}