This commit is contained in:
Lennart J. Kurzweg (Nx2)
2024-07-11 15:17:30 +02:00
parent 71fba2ade8
commit 152a42db08
2 changed files with 13 additions and 0 deletions

View File

@@ -24,6 +24,7 @@
./system-modules/ollama.nix ./system-modules/ollama.nix
./system-modules/nx2site.nix ./system-modules/nx2site.nix
./system-modules/kodi.nix ./system-modules/kodi.nix
./system-modules/qmk.nix
]; ];

12
system-modules/qmk.nix Normal file
View File

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