diff --git a/common/graphics/qt.nix b/common/graphics/qt.nix index 3e53aba..893f063 100644 --- a/common/graphics/qt.nix +++ b/common/graphics/qt.nix @@ -6,31 +6,24 @@ in config = with cfg; lib.mkIf (enable && graphical) { qt = { enable = true; - style = "breeze"; + style = "kvantum"; platformTheme = "qt5ct"; }; environment.systemPackages = with pkgs; with kdePackages; [ - # qtstyleplugin-kvantum - # catppuccin-kvantum + qtstyleplugin-kvantum catppuccin-sddm-corners libsForQt5.qtgraphicaleffects - # catppuccin-kvantum + catppuccin-kvantum kdePackages.audiocd-kio xcb-util-cursor qt6ct - dolphin - papirus-icon-theme - qtwayland - libsForQt5.kirigami2 - kdePackages.kirigami - breeze-icons - libsForQt5.breeze-qt5 - breeze - okular + kdePackages.dolphin ]; - # environment.etc."kvantum".source = "${pkgs.catppuccin-kvantum}/share/Kvantum"; + environment.pathsToLink = [ + "/share/Kvantum" + ]; services.displayManager = { sddm = { @@ -42,6 +35,12 @@ in defaultSession = lib.optionalString cfg.sway.enable "sway"; }; - boot.plymouth.enable = true; + boot.plymouth = { + themePackages = with pkgs; [ + catppuccin-plymouth + ]; + theme = "catppuccin-macchiato"; + enable = true; + }; }; }