mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-21 19:13:55 -05:00
kde: add malitt keyboard
This commit is contained in:
parent
d86e4c5be1
commit
553f0450d7
|
@ -8,6 +8,7 @@
|
||||||
imports = [
|
imports = [
|
||||||
./gnome
|
./gnome
|
||||||
./hyprland
|
./hyprland
|
||||||
|
./kde
|
||||||
./sway
|
./sway
|
||||||
./wayland
|
./wayland
|
||||||
];
|
];
|
||||||
|
|
21
homeManagerModules/desktop/kde/default.nix
Normal file
21
homeManagerModules/desktop/kde/default.nix
Normal 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";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue