nichts/modules/style/quickshell/quickshell.mod.nix

33 lines
652 B
Nix
Raw Normal View History

2024-10-09 22:49:23 +02:00
{
config,
2025-07-16 22:16:27 +02:00
inputs,
lib,
2024-10-09 22:49:23 +02:00
pkgs,
...
}: let
2025-04-29 13:57:19 +02:00
inherit (lib.modules) mkIf;
inherit (lib.options) mkEnableOption;
cfg = config.modules.theming.quickshell;
2024-10-09 22:49:23 +02:00
in {
2025-04-29 13:57:19 +02:00
options.modules.theming.quickshell.enable = mkEnableOption "quickshell";
config = mkIf cfg.enable {
environment.systemPackages = with pkgs; [
2025-07-16 22:16:27 +02:00
inputs.quickshell.packages.${pkgs.stdenv.system}.quickshell
2025-04-29 13:57:19 +02:00
qt6.qtimageformats
qt6.qt5compat
qt6.qtmultimedia
qt6.qtdeclarative
2025-07-19 00:36:05 +02:00
qt6.qtsvg
qt6.qtwayland
qt6.qtbase
kdePackages.breeze
kdePackages.breeze-icons
2025-04-29 13:57:19 +02:00
];
2025-04-16 22:34:25 +02:00
2025-04-29 13:57:19 +02:00
# taken from outfoxxed.
qt.enable = true;
};
2024-10-09 22:49:23 +02:00
}