This commit is contained in:
DarkGui
2025-11-18 20:35:43 -03:00
parent 149286ca06
commit 1ba54c86fa
5 changed files with 43 additions and 24 deletions
+5 -1
View File
@@ -29,7 +29,11 @@
#winboat
gitFull
kdePackages.partitionmanager
usbutils
openrgb
winetricks
wineWowPackages.staging
## inputs stable
#inputs.nixpkgs-stable.legacyPackages.${pkgs.stdenv.hostPlatform.system}
];
+1
View File
@@ -13,5 +13,6 @@
./zstd.nix
./fish.nix
./kernel.nix
./udev.nix
];
}
+16
View File
@@ -0,0 +1,16 @@
{ config, lib, inputs, pkgs, ... }: {
# OpenRGB setup
services.hardware.openrgb = {
enable = true;
motherboard = "amd";
package = pkgs.openrgb-with-all-plugins; # enable all plugins
};
services = {
udev.enable = true;
udev.extraRules = ''
KERNEL=="hidraw*", ATTRS{idVendor}=="1d57", ATTRS{idProduct}=="fa60", MODE="0666", SYMLINK+="xenta-mouse-hidraw"
KERNEL=="hidraw*", ATTRS{idVendor}=="1d57", ATTRS{idProduct}=="fa55", MODE="0666", SYMLINK+="xenta-mouse-hidraw"
'';
};
}
-2
View File
@@ -40,8 +40,6 @@
python3
unrar
droidcam
winetricks
wineWowPackages.staging
];
}