kde: add malitt keyboard

This commit is contained in:
Aly Raffauf 2024-10-26 00:06:42 -04:00
parent d86e4c5be1
commit 553f0450d7
2 changed files with 22 additions and 0 deletions

View file

@ -8,6 +8,7 @@
imports = [
./gnome
./hyprland
./kde
./sway
./wayland
];

View file

@ -0,0 +1,21 @@
{
config,
lib,
pkgs,
...
}: {
config = lib.mkIf config.ar.home.desktop.kde.enable {
home.packages = with pkgs; [maliit-keyboard];
dconf = {
enable = true;
settings = {
"org.maliit.keyboard.maliit" = {
key-press-haptic-feedback = true;
theme = "BreezeDark";
};
};
};
};
}