diff --git a/nix/home/common/theming.nix b/nix/home/common/theming.nix index d9328b3..5b70de9 100644 --- a/nix/home/common/theming.nix +++ b/nix/home/common/theming.nix @@ -87,13 +87,25 @@ in }; packages = with pkgs; [ (cursor_package) + libsForQt5.qtstyleplugin-kvantum + libsForQt5.qt5ct + # Use an alternative Nord theme that's still available + nordic # This might include Kvantum themes + # Or try these alternatives: + # kdePackages.breeze-icons # For icons ]; }; qt = { enable = true; - platformTheme.name = "gtk"; - style.name = "Nordic"; + platformTheme.name = "qt5ct"; + }; + + xdg.configFile = { + "Kvantum/kvantum.kvconfig".text = '' + [General] + theme=kvantum-dark + ''; }; gtk = { diff --git a/nix/home/linux.nix b/nix/home/linux.nix index d17a22b..6c7faec 100644 --- a/nix/home/linux.nix +++ b/nix/home/linux.nix @@ -64,6 +64,8 @@ in imv keychain wtype + kdePackages.qtsvg + kdePackages.dolphin ]; file = utils.mk_symlinks { inherit config dotfiles; };