mirror of
https://github.com/davegallant/nix-config
synced 2025-08-07 05:02:28 +00:00
Remove sbx-h6-rgb
This commit is contained in:
@@ -198,7 +198,6 @@ in
|
|||||||
nix-install = "nix-env -iA";
|
nix-install = "nix-env -iA";
|
||||||
ps = "procs";
|
ps = "procs";
|
||||||
t = "cd-fzf";
|
t = "cd-fzf";
|
||||||
ts = "tms switch";
|
|
||||||
tf = "terraform";
|
tf = "terraform";
|
||||||
tree = "eza --tree";
|
tree = "eza --tree";
|
||||||
v = "nvim";
|
v = "nvim";
|
||||||
|
@@ -114,7 +114,6 @@ in
|
|||||||
prismlauncher
|
prismlauncher
|
||||||
qemu
|
qemu
|
||||||
ryujinx
|
ryujinx
|
||||||
sbx-h6-rgb
|
|
||||||
strace
|
strace
|
||||||
unityhub
|
unityhub
|
||||||
unstable.burpsuite
|
unstable.burpsuite
|
||||||
@@ -256,9 +255,6 @@ in
|
|||||||
enable = true;
|
enable = true;
|
||||||
package = unstable.tailscale;
|
package = unstable.tailscale;
|
||||||
};
|
};
|
||||||
udev.extraRules = ''
|
|
||||||
ACTION=="add", ATTR{idVendor}=="041e", ATTR{idProduct}=="3255", RUN+="${pkgs.sbx-h6-rgb}/bin/sbx-h6-ctl -c c010ff 041e:3255"
|
|
||||||
'';
|
|
||||||
xserver = {
|
xserver = {
|
||||||
enable = true;
|
enable = true;
|
||||||
displayManager = {
|
displayManager = {
|
||||||
|
@@ -1,5 +1,4 @@
|
|||||||
final: prev: {
|
final: prev: {
|
||||||
cd-fzf = prev.callPackage ./cd-fzf { };
|
cd-fzf = prev.callPackage ./cd-fzf { };
|
||||||
sbx-h6-rgb = prev.callPackage ./sbx-h6-rgb { };
|
|
||||||
vpngate = prev.callPackage ./vpngate { };
|
vpngate = prev.callPackage ./vpngate { };
|
||||||
}
|
}
|
||||||
|
@@ -1,35 +0,0 @@
|
|||||||
{
|
|
||||||
lib,
|
|
||||||
fetchFromGitHub,
|
|
||||||
pkgs,
|
|
||||||
stdenv,
|
|
||||||
}:
|
|
||||||
stdenv.mkDerivation rec {
|
|
||||||
pname = "sbx-h6-rgb";
|
|
||||||
version = "95b4ef9788ef94e557a4d1e815079d5ea8a70943";
|
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
|
||||||
owner = "Oscillope";
|
|
||||||
repo = "sbx-h6-rgb";
|
|
||||||
rev = version;
|
|
||||||
sha256 = "sha256-tKKNdzijloBiGBHf5C604824B/BbxBxvCL/ms4orT9M=";
|
|
||||||
};
|
|
||||||
|
|
||||||
buildInputs = with pkgs; [ hidapi ];
|
|
||||||
|
|
||||||
buildPhase = ''
|
|
||||||
make
|
|
||||||
'';
|
|
||||||
|
|
||||||
installPhase = ''
|
|
||||||
install -D sbx-h6-ctl $out/bin/sbx-h6-ctl
|
|
||||||
'';
|
|
||||||
|
|
||||||
meta = with lib; {
|
|
||||||
description = "Creative SoundBlasterX RGB LED setter.";
|
|
||||||
license = licenses.gpl3;
|
|
||||||
maintainers = with maintainers; [ davegallant ];
|
|
||||||
platforms = platforms.linux;
|
|
||||||
};
|
|
||||||
|
|
||||||
}
|
|
Reference in New Issue
Block a user