10 lines
183 B
Nix
10 lines
183 B
Nix
|
{ pkgs, unstable, config, ... }:
|
||
|
{
|
||
|
hardware.openrazer.enable = true;
|
||
|
|
||
|
environment.systemPackages = [ #with unstable; [
|
||
|
pkgs.openrazer-daemon
|
||
|
unstable.polychromatic
|
||
|
];
|
||
|
}
|