nix-configs/hosts/theseus/kmonad.nix
2024-11-10 23:55:03 +01:00

12 lines
235 B
Nix

{ pkgs, lib, ... }: {
services.kmonad = {
enable = true;
keyboards = {
builtin= {
device = "/dev/input/by-path/platform-i8042-serio-0-event-kbd";
config = builtins.readFile ./builtin.kbd;
};
};
};
}