1
0
forked from extern/nix-config
donovanglover-nix-config/modules/osu/default.nix
Donovan Glover 4f18602527
Add osu module
Note that osu! is currently unfree since it depends on the bass audio
library.
2023-05-16 21:16:47 -04:00

12 lines
197 B
Nix

{ pkgs, lib, ... }:
{
environment.systemPackages = with pkgs; [
osu-lazer-bin
];
nixpkgs.config.allowUnfreePredicate = pkg: builtins.elem (lib.getName pkg) [
"osu-lazer-bin"
];
}