Files

13 lines
306 B
Nix

# See https://nixos.wiki/wiki/Qmk
{ pkgs, ... }:
{
# Allows access to keyboard configuration as a non-root user.
hardware.keyboard.qmk.enable = true;
# Add VIA to udev for firmwares that support it.
environment.systemPackages = with pkgs; [
via
];
services.udev.packages = [ pkgs.via ];
}