From 2662547e33b170f8186c8a665283bf4e7095b687 Mon Sep 17 00:00:00 2001 From: Felix Schulze Date: Wed, 18 Jun 2025 17:20:57 +0200 Subject: [PATCH] wildfire: 196 current 2025-06-18 17:20:53 25.05.20250615.6c64dab 6.15.2 * --- modules/home/rofi.nix | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/modules/home/rofi.nix b/modules/home/rofi.nix index 771821b..a20df1f 100644 --- a/modules/home/rofi.nix +++ b/modules/home/rofi.nix @@ -1,18 +1,17 @@ -{pkgs, ...}: { +{ programs.rofi = { enable = true; theme = "gruvbox-dark"; font = "Intel One Mono"; modes = [ - "window" - "drun" - "calc" - "emoji" - ]; - plugins = [ - pkgs.rofi-emoji - pkgs.rofi-calc + "combi" ]; + extraConfig = { + "combi-modes" = [ + "drun" + "window" + ]; + }; terminal = "\${pkgs.ghostty}/bin/ghostty"; }; }