dotfiles/common/systemModules/razer.nix
2024-11-26 19:30:01 -05:00

12 lines
186 B
Nix

{ NAME }: {pkgs, ... }: {
environment.systemPackages = with pkgs; [
polychromatic
];
hardware = {
openrazer = {
enable = true;
users = [ NAME ];
};
};
}