From 8ff582da73b9c4b401dfdfedecba5d7b0172f101 Mon Sep 17 00:00:00 2001 From: "quentin@aristote.fr" Date: Sat, 11 Mar 2023 14:58:06 +0100 Subject: home: rofi: add plugins --- modules/home-manager/personal/programs/rofi.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'modules/home-manager/personal/programs') 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 ]; }; } -- cgit v1.2.3