26 lines
513 B
Nix
26 lines
513 B
Nix
{ pkgs, config, ... }:
|
|
|
|
{
|
|
programs.rofi = {
|
|
enable = true;
|
|
package = pkgs.rofi-wayland;
|
|
location = "center";
|
|
terminal = "${pkgs.alacritty}/bin/alacritty";
|
|
pass = {
|
|
enable = true;
|
|
package = pkgs.rofi-pass-wayland;
|
|
extraConfig = ''
|
|
USERNAME_field='login'
|
|
'';
|
|
};
|
|
extraConfig = {
|
|
sort = true;
|
|
sorting-method = "fzf";
|
|
matching = "fuzzy";
|
|
show-icons = false;
|
|
disable-history = false;
|
|
hide-scrollbar = true;
|
|
};
|
|
};
|
|
}
|