14 lines
385 B
Nix
14 lines
385 B
Nix
{ confg, pkgs, ... }:
|
|
|
|
{
|
|
environment.systemPackages = with pkgs; with kdePackages; with qt6Packages; [
|
|
(kdePackages.qt6ct.overrideAttrs (oldAttrs: {
|
|
name = "qt6ct-kde";
|
|
buildInputs = oldAttrs.buildInputs ++ ([
|
|
qtdeclarative kconfig kcolorscheme kiconthemes
|
|
]);
|
|
patches = (oldAttrs.patches or [ ]) ++ [ ./qt6ct-shenanigans.patch ];
|
|
}))
|
|
];
|
|
}
|