dotfiles/common/systemModules/razer.nix

13 lines
181 B
Nix
Raw Normal View History

2024-10-02 17:19:34 -04:00
{ NAME }: { ... }: {
2024-11-26 17:01:58 -05:00
environment.systemPackages = with pkgs; [
polychromatic
];
2024-10-02 17:19:34 -04:00
hardware = {
openrazer = {
enable = true;
users = [ NAME ];
};
};
}