From fc61369b8912a2e1762f664dc51ba25daf0eb17b Mon Sep 17 00:00:00 2001 From: jasmine Date: Mon, 12 May 2025 09:58:53 +0800 Subject: [PATCH] install qmk --- home-manager/sajenim/features/cli/default.nix | 1 + nixos/fuchsia/hardware-configuration.nix | 1 + nixos/fuchsia/services/udev/default.nix | 2 +- 3 files changed, 3 insertions(+), 1 deletion(-) diff --git a/home-manager/sajenim/features/cli/default.nix b/home-manager/sajenim/features/cli/default.nix index 0592bf7..514eae0 100644 --- a/home-manager/sajenim/features/cli/default.nix +++ b/home-manager/sajenim/features/cli/default.nix @@ -11,5 +11,6 @@ home.packages = with pkgs; [ pulsemixer + unstable.qmk ]; } diff --git a/nixos/fuchsia/hardware-configuration.nix b/nixos/fuchsia/hardware-configuration.nix index a7f7b76..ee33041 100644 --- a/nixos/fuchsia/hardware-configuration.nix +++ b/nixos/fuchsia/hardware-configuration.nix @@ -55,6 +55,7 @@ rocmPackages.clr.icd ]; }; + keyboard.qmk.enable = true; }; # Setup our filesystems diff --git a/nixos/fuchsia/services/udev/default.nix b/nixos/fuchsia/services/udev/default.nix index 3b17d92..2122e6e 100644 --- a/nixos/fuchsia/services/udev/default.nix +++ b/nixos/fuchsia/services/udev/default.nix @@ -3,6 +3,6 @@ services.udev.packages = with pkgs; [ android-udev-rules openrgb - qmk-udev-rules + unstable.qmk-udev-rules ]; }