From 67fcb2c7bc94e75663c9ad6de83bfb74fbdf34e9 Mon Sep 17 00:00:00 2001 From: Fishandchips321 Date: Sat, 28 Feb 2026 19:38:57 +0000 Subject: [PATCH] made quickshell optional --- modules/graphical.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/modules/graphical.nix b/modules/graphical.nix index 0510ce0..b29b61f 100644 --- a/modules/graphical.nix +++ b/modules/graphical.nix @@ -9,6 +9,7 @@ in modules.graphical = { enable = lib.mkEnableOption "Enable the GUI"; waybar = lib.mkEnableOption "Enable waybar"; + quickshell = lib.mkEnableOption "Enable quickshell"; }; }; @@ -19,8 +20,8 @@ in environment.systemPackages = with pkgs; [ alacritty wl-clipboard - quickshell - ]; + ] + ++ lib.optional cfg.quickshell quickshell; programs.waybar.enable = lib.mkIf cfg.waybar true; };