Add dolphin file browser and fix some qt theming

This commit is contained in:
Martin Larsson 2025-10-11 15:21:19 +02:00
parent b8f72bf6ad
commit c5a18686c6
2 changed files with 16 additions and 2 deletions

View file

@ -87,13 +87,25 @@ in
}; };
packages = with pkgs; [ packages = with pkgs; [
(cursor_package) (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 = { qt = {
enable = true; enable = true;
platformTheme.name = "gtk"; platformTheme.name = "qt5ct";
style.name = "Nordic"; };
xdg.configFile = {
"Kvantum/kvantum.kvconfig".text = ''
[General]
theme=kvantum-dark
'';
}; };
gtk = { gtk = {

View file

@ -64,6 +64,8 @@ in
imv imv
keychain keychain
wtype wtype
kdePackages.qtsvg
kdePackages.dolphin
]; ];
file = utils.mk_symlinks { inherit config dotfiles; }; file = utils.mk_symlinks { inherit config dotfiles; };