attempt to fix qt styling?

This commit is contained in:
Daylin Morgan 2025-01-10 12:00:00 -06:00
parent 15c27f0aff
commit a678910194
Signed by: daylin
GPG key ID: 950D13E9719334AD

View file

@ -2,7 +2,7 @@
pkgs, pkgs,
config, config,
lib, lib,
flake, enabled,
... ...
}: }:
let let
@ -10,12 +10,33 @@ let
in in
{ {
config = mkIf config.oizys.desktop.enable { config = mkIf config.oizys.desktop.enable {
environment.systemPackages = qt = enabled // {
[ (flake.pkg "f1multiviewer") ] platformTheme = "qt5ct";
++ (with pkgs; [ # style = "kvantum";
};
# For some reason it's not linked unless I include this.
# Though it's possible if I enabled plasma than it would be.
environment.pathsToLink = ["/share/Kvantum"];
environment.systemPackages = with pkgs; [
(catppuccin-gtk.override {
accents = [ "pink" ];
variant = "mocha";
})
(catppuccin-kvantum.override {
variant = "mocha";
accent = "pink";
})
libsForQt5.qtstyleplugin-kvantum
libsForQt5.okular
libsForQt5.qt5ct
papirus-icon-theme
# pcmanfm build failure? # pcmanfm build failure?
# wezterm alacritty # backup to ghostty
alacritty
inkscape inkscape
gimp gimp
@ -24,12 +45,7 @@ in
libreoffice-qt libreoffice-qt
hunspell # spell check for libreoffice hunspell # spell check for libreoffice
];
okular
(catppuccin-gtk.override {
accents = [ "rosewater" ];
variant = "mocha";
})
]);
}; };
} }