feat(home:qt): add qt related packages

This commit is contained in:
ooks-io 2024-07-28 15:39:45 +12:00
parent 4a40a7bf03
commit 7fefb94400

View file

@ -1,4 +1,4 @@
{ config, lib, ... }:
{ config, lib, pkgs, ... }:
let
inherit (lib) mkIf;
@ -9,8 +9,17 @@ in
config = mkIf cfg.enable {
qt = {
enable = true;
platformTheme.name = "gtk";
};
style.name = "gtk2";
platformTheme.name = "gtk2";
};
home.packages = with pkgs; [
libsForQt5.qt5.qtwayland
kdePackages.qtwayland
qt6.qtwayland
kdePackages.qqc2-desktop-style
libsForQt5.qtstyleplugins
qt6Packages.qt6gtk2
];
};
}