mirror of
https://github.com/daylinmorgan/oizys.git
synced 2025-01-22 07:07:32 -06:00
attempt to fix qt styling?
This commit is contained in:
parent
15c27f0aff
commit
a678910194
1 changed files with 28 additions and 12 deletions
|
@ -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";
|
|
||||||
})
|
|
||||||
]);
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue