[altair] Renames from drew-desktop

This commit is contained in:
2025-03-31 18:19:48 -07:00
parent a99b91994e
commit a17e8c0ec6
7 changed files with 3 additions and 3 deletions

View File

@@ -0,0 +1,12 @@
# 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 ];
}