use breeze-dark icons and qt theme
All checks were successful
Hydra nixosConfigurations.oracle-installer Hydra build #27532 of nixos-config:pr618:nixosConfigurations.oracle-installer
Hydra nixosConfigurations.pc-installer Hydra build #27533 of nixos-config:pr618:nixosConfigurations.pc-installer
Hydra nixosConfigurations.thinkrac Hydra build #27535 of nixos-config:pr618:nixosConfigurations.thinkrac
Hydra nixosConfigurations.rainbow-resort Hydra build #27534 of nixos-config:pr618:nixosConfigurations.rainbow-resort

This commit is contained in:
Charlotte 🦝 Delenk 2024-11-25 10:48:53 +01:00
parent 556c414ae2
commit 7dc2437393
Signed by: darkkirb
GPG key ID: AB2BD8DAF2E37122

View file

@ -111,14 +111,25 @@ in
};
};
};
qt.style = {
name = "breeze";
package = pkgs.kdePackages.breeze;
};
}
{
stylix.targets.kde.enable = lib.mkForce (config.isGraphical && !config.isSway);
}
(
if config.isSway then
{
qt.style = {
name = "breeze-dark";
package = pkgs.kdePackages.breeze;
};
gtk.iconTheme = {
package = pkgs.kdePackages.breeze-icons;
name = "breeze-dark";
};
}
else
{ }
)
(
if config.isGraphical && !config.isSway then
{ config, lib, ... }: