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"; }; }