diff options
| author | quentin@aristote.fr <quentin@aristote.fr> | 2023-03-11 14:58:06 +0100 |
|---|---|---|
| committer | quentin@aristote.fr <quentin@aristote.fr> | 2023-03-11 14:58:06 +0100 |
| commit | 8ff582da73b9c4b401dfdfedecba5d7b0172f101 (patch) | |
| tree | 6cffc3f59515e5a884fcdd7dc085c4390844ea57 | |
| parent | 42b03ba0159336e47c687564959692e77832f15e (diff) | |
home: rofi: add plugins
| -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 ]; }; } |
