nixos/home/hyprland/rofi/default.nix

27 lines
534 B
Nix
Raw Normal View History

{ pkgs, config, ... }:
{
2023-04-03 16:53:23 +01:00
programs.rofi = {
enable = true;
2023-10-10 20:00:04 +01:00
package = pkgs.rofi-wayland;
2023-07-18 09:26:10 +01:00
location = "center";
2023-10-10 20:00:04 +01:00
terminal = "${pkgs.alacritty}/bin/alacritty";
pass = {
enable = true;
extraConfig = ''
USERNAME_field='login'
2023-10-10 20:00:04 +01:00
backend=wtype
clibpoard_backend=wl-clipboard
'';
};
2023-04-07 09:42:12 +01:00
extraConfig = {
2023-07-18 10:11:38 +01:00
sort = true;
sorting-method = "fzf";
matching = "fuzzy";
show-icons = false;
2023-04-07 09:42:12 +01:00
disable-history = false;
hide-scrollbar = true;
};
2023-04-03 16:53:23 +01:00
};
}