diff options
author | tdback <tyler@tdback.net> | 2025-02-17 20:02:44 -0500 |
---|---|---|
committer | tdback <tyler@tdback.net> | 2025-02-17 20:02:44 -0500 |
commit | 930d7fb1097b68b8c5c76dd83a5efb3c316d4617 (patch) | |
tree | 39b2f5e3729efa853ca774f91f505f9200b8b3b2 /hosts | |
parent | 6e1a260811d35ee34b328dd43145755a753f1fef (diff) |
hosts/woodpecker: added udev rules and flashing utility for zsa
Diffstat (limited to 'hosts')
-rw-r--r-- | hosts/woodpecker/default.nix | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/hosts/woodpecker/default.nix b/hosts/woodpecker/default.nix index 81a6715..40e53de 100644 --- a/hosts/woodpecker/default.nix +++ b/hosts/woodpecker/default.nix @@ -1,6 +1,7 @@ { inputs, lib, + pkgs, ... }: { @@ -54,4 +55,8 @@ }; }; }; + + # Include udev rules and flashing utility for ZSA keyboards. + hardware.keyboard.zsa.enable = true; + environment.systemPackages = with pkgs; [ keymapp ]; } |