summaryrefslogtreecommitdiff
path: root/modules/home-manager/personal/programs/rofi.nix
blob: d0e69d7e6d01834080ce00103d9ce04c300b3dde (plain)
1
2
3
4
5
6
7
8
9
10
11
{ 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");
    plugins = with pkgs; [ rofi-top rofi-calc rofi-emoji ];
  };
}