14 lines
237 B
Nix
14 lines
237 B
Nix
|
{ config, lib, pkgs, user, ... }:
|
||
|
|
||
|
{
|
||
|
programs.rofi = {
|
||
|
enable = true;
|
||
|
font = "DejaVu Sans Mono 12";
|
||
|
terminal = "${pkgs.kitty}/bin/kitty";
|
||
|
extraConfig = {
|
||
|
show-icons = true;
|
||
|
matching = "fuzzy";
|
||
|
};
|
||
|
};
|
||
|
}
|