added qmk for the keyboard config

This commit is contained in:
2025-11-16 13:15:48 +01:00
parent 941c51884d
commit a78d66fbd3
4 changed files with 8 additions and 2 deletions

View File

@@ -9,7 +9,7 @@
# To disable installing GNOME's suite of applications
# and only be left with GNOME shell.
services.gnome.core-apps.enable = false;
services.gnome.core-apps.enable = true;
services.gnome.core-developer-tools.enable = false;
services.gnome.games.enable = false;
environment.gnome.excludePackages = with pkgs; [ gnome-tour gnome-user-docs ];

View File

@@ -1,4 +1,3 @@
{ inputs, pkgs, ... }:
{
# Enable the uinput module
boot.kernelModules = [ "uinput" ];

6
modules/input/qmk.nix Normal file
View File

@@ -0,0 +1,6 @@
{ pkgs, ... }:
{
hardware.keyboard.qmk.enable = true;
environment.systemPackages = with pkgs; [ via qmk ];
services.udev.packages = [ pkgs.via ];
}