diff --git a/modules/home/workstation/tools/zellijMenu.nix b/modules/home/workstation/tools/zellijMenu.nix index fbfe5b8..3bf4f76 100644 --- a/modules/home/workstation/tools/zellijMenu.nix +++ b/modules/home/workstation/tools/zellijMenu.nix @@ -7,7 +7,6 @@ }: let inherit (lib) mkIf; inherit (osConfig.ooknet.console) multiplexer; - inherit (config.programs) rofi; inherit (config.ooknet) binds; zellijmenu = pkgs.writeShellApplication { name = "zellijmenu"; @@ -233,7 +232,7 @@ ''; }; in { - config = mkIf (multiplexer == "zellij" && rofi.enable) { + config = mkIf (multiplexer == "zellij") { home.packages = [zellijmenu]; ooknet.binds.zellijMenu = "zellijmenu -n"; };