13 lines
227 B
Nix
13 lines
227 B
Nix
|
{ ... }: {
|
||
|
programs.rofi = {
|
||
|
enable = true;
|
||
|
# font = "Roboto Mono 14";
|
||
|
extraConfig = {
|
||
|
window-format = "{w} {t}";
|
||
|
matching = "fuzzy";
|
||
|
line-padding = "15";
|
||
|
line-margin = "0";
|
||
|
};
|
||
|
};
|
||
|
}
|