mirror of
https://github.com/donovanglover/nix-config.git
synced 2025-01-16 19:08:25 +01:00
Add osu module
Note that osu! is currently unfree since it depends on the bass audio library.
This commit is contained in:
parent
855e82b8e7
commit
4f18602527
@ -10,6 +10,7 @@
|
||||
./modules/htop.nix
|
||||
./modules/dual-function-keys.nix
|
||||
./modules/tlp.nix
|
||||
./modules/osu
|
||||
];
|
||||
|
||||
boot.loader.systemd-boot.enable = true;
|
||||
|
11
modules/osu/default.nix
Normal file
11
modules/osu/default.nix
Normal file
@ -0,0 +1,11 @@
|
||||
{ pkgs, lib, ... }:
|
||||
|
||||
{
|
||||
environment.systemPackages = with pkgs; [
|
||||
osu-lazer-bin
|
||||
];
|
||||
|
||||
nixpkgs.config.allowUnfreePredicate = pkg: builtins.elem (lib.getName pkg) [
|
||||
"osu-lazer-bin"
|
||||
];
|
||||
}
|
Loading…
Reference in New Issue
Block a user