nix-config/nixos/_mixins/services/openrazer.nix

18 lines
379 B
Nix
Raw Permalink Normal View History

{ desktop, pkgs, username, ... }:
{
environment.systemPackages = with pkgs; [ ] ++ lib.optionals (desktop != null) [
polychromatic
];
hardware = {
openrazer = {
enable = true;
devicesOffOnScreensaver = false;
keyStatistics = true;
mouseBatteryNotifier = true;
syncEffectsEnabled = true;
users = [ "${username}" ];
};
};
}