blob: 23c191799239ef236a7eba4869a7ce1fa539dfec (
plain)
1
2
3
4
5
6
7
8
9
10
|
{ config, lib, ... }:
{
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");
};
}
|