added qmk for the keyboard config
This commit is contained in:
@@ -10,6 +10,7 @@
|
|||||||
../../users/lukas.nix
|
../../users/lukas.nix
|
||||||
../../modules/desktop/gnome.nix
|
../../modules/desktop/gnome.nix
|
||||||
../../modules/input/katana.nix
|
../../modules/input/katana.nix
|
||||||
|
../../modules/input/qmk.nix
|
||||||
../../modules/networking/networkmanager.nix
|
../../modules/networking/networkmanager.nix
|
||||||
../../modules/networking/bluetooth.nix
|
../../modules/networking/bluetooth.nix
|
||||||
../../modules/system/locale.nix
|
../../modules/system/locale.nix
|
||||||
|
|||||||
@@ -9,7 +9,7 @@
|
|||||||
|
|
||||||
# To disable installing GNOME's suite of applications
|
# To disable installing GNOME's suite of applications
|
||||||
# and only be left with GNOME shell.
|
# 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.core-developer-tools.enable = false;
|
||||||
services.gnome.games.enable = false;
|
services.gnome.games.enable = false;
|
||||||
environment.gnome.excludePackages = with pkgs; [ gnome-tour gnome-user-docs ];
|
environment.gnome.excludePackages = with pkgs; [ gnome-tour gnome-user-docs ];
|
||||||
|
|||||||
@@ -1,4 +1,3 @@
|
|||||||
{ inputs, pkgs, ... }:
|
|
||||||
{
|
{
|
||||||
# Enable the uinput module
|
# Enable the uinput module
|
||||||
boot.kernelModules = [ "uinput" ];
|
boot.kernelModules = [ "uinput" ];
|
||||||
|
|||||||
6
modules/input/qmk.nix
Normal file
6
modules/input/qmk.nix
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
{ pkgs, ... }:
|
||||||
|
{
|
||||||
|
hardware.keyboard.qmk.enable = true;
|
||||||
|
environment.systemPackages = with pkgs; [ via qmk ];
|
||||||
|
services.udev.packages = [ pkgs.via ];
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user