mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-11-15 04:44:03 +01:00
4cdf7d0e04
This commit removes some premature modularization to make it easier to see and manipulate everything at once.
17 lines
300 B
Nix
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"
|
|
];
|
|
}
|