nixos-configuration/home/rofi.nix

13 lines
227 B
Nix
Raw Normal View History

2022-02-15 15:44:40 +01:00
{ ... }: {
programs.rofi = {
enable = true;
# font = "Roboto Mono 14";
extraConfig = {
window-format = "{w} {t}";
matching = "fuzzy";
line-padding = "15";
line-margin = "0";
};
};
}