16 lines
265 B
Nix
16 lines
265 B
Nix
{ lib, config, pkgs, ... }:
|
|
{
|
|
hardware.openrazer = {
|
|
enable = true;
|
|
users = [
|
|
"wroclaw"
|
|
];
|
|
};
|
|
# users.groups.openrazer.members = [
|
|
# "wroclaw"
|
|
# ];
|
|
environment.systemPackages = with pkgs; [
|
|
openrazer-daemon
|
|
polychromatic
|
|
];
|
|
}
|