dotfiles/common/users/homeModules/kde.nix
sadan4 33393a9986
Declaratively manage KDE Plasma (#4)
* init and keybinds

* add display and monitor config

* panel is now configured, need to do system tray

* setup system tray

* fix mice acceleration

* move .gtkrc-2.0 to workaround https://github.com/nix-community/plasma-manager/issues/472

* fix color schemes
2025-03-20 00:37:27 -04:00

15 lines
305 B
Nix

{pkgs, ...}: {
imports = [
./plasma.nix
];
home = {
packages = with pkgs; [
kdePackages.filelight
kdePackages.ksshaskpass
xsel
kdePackages.kcolorchooser
qalculate-qt
gnome-disk-utility
];
};
}