diff options
Diffstat (limited to 'modules')
| -rw-r--r-- | modules/home-manager/personal/programs/rofi.nix | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/modules/home-manager/personal/programs/rofi.nix b/modules/home-manager/personal/programs/rofi.nix index 23c1917..d0e69d7 100644 --- a/modules/home-manager/personal/programs/rofi.nix +++ b/modules/home-manager/personal/programs/rofi.nix @@ -1,10 +1,11 @@ -{ config, lib, ... }: +{ config, lib, pkgs, ... }: { programs.rofi = { cycle = lib.mkDefault true; theme = lib.mkDefault config.personal.home.dotfiles.rofi; # TODO: remove this when stylix fixes it upstream - font = lib.mkIf (config ? stylix) (lib.mkForce "${config.stylix.fonts.monospace.name} 12"); + font = lib.mkIf (config ? stylix) (lib.mkForce "${config.stylix.fonts.monospace.name} 12"); + plugins = with pkgs; [ rofi-top rofi-calc rofi-emoji ]; }; } |
