Added: Dolphin

This commit is contained in:
2025-04-02 23:34:58 +02:00
parent 48adc7879c
commit 40565ea61a
7 changed files with 62 additions and 4 deletions

19
home/themes/dark/qt.nix Normal file
View File

@@ -0,0 +1,19 @@
{ pkgs, ... }:
{
home.packages = with pkgs.libsForQt5; [
qt5ct
qtstyleplugin-kvantum
];
qt = {
enable = true;
platformTheme = "qtct";
style.name = "kvantum";
};
xdg.configFile = {
"Kvantum/ArcDark".source = "${pkgs.arc-kde-theme}/share/Kvantum/ArcDark";
"Kvantum/kvantum.kvconfig".text = "[General]\ntheme=ArcDark";
};
}