flocon/modules/nix/core/hardware/via.nix

15 lines
248 B
Nix
Raw Normal View History

2025-01-14 11:34:01 +00:00
{
lib,
pkgs,
config,
...
}: {
config = lib.mkIf config.local.profiles.gaming.enable {
hardware.keyboard.qmk.enable = true;
environment.systemPackages = with pkgs; [
via
];
services.udev.packages = [pkgs.via];
};
}