nixcfg/homeManagerModules/desktop/kde/default.nix

22 lines
351 B
Nix
Raw Normal View History

2024-10-26 00:06:42 -04:00
{
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";
};
};
};
};
}