Initial import.

This commit is contained in:
2026-08-10 11:17:15 -04:00
parent f7971505b6
commit d988fa0495
9 changed files with 1528 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
{ 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 ];
}))
];
}