Alexander "PapaTutuWawa
648da7e05a
- Fix Vortex Mod Manager by giving it access to /mnt/Storage (Bad, but well) - Add package: razer-cli - Tell gamemode to put my GPU in performance mode - Tell gamemode to enable or disable keyboard backlight - Switch the miku kernel to Zen
23 lines
428 B
Nix
23 lines
428 B
Nix
{
|
|
lib,
|
|
fetchFromGitHub,
|
|
python3, xorg
|
|
}:
|
|
|
|
python3.pkgs.buildPythonPackage rec {
|
|
pname = "razer-cli";
|
|
version = "2.1.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "LoLei";
|
|
repo = "razer-cli";
|
|
rev = "v${version}";
|
|
sha256 = "0vcyssswsw7gzk2xlpvcqc9fgvwxzyivsqmw5r9b391dv3wpr1y7";
|
|
};
|
|
|
|
doCheck = false;
|
|
|
|
buildInputs = [ xorg.xrdb ];
|
|
propagatedBuildInputs = with python3.pkgs; [ setuptools openrazer ];
|
|
}
|