nixos/home/hyprland/rofi/default.nix

24 lines
416 B
Nix

{ pkgs, config, ... }:
{
programs.rofi = {
enable = true;
location = "center";
pass = {
enable = true;
extraConfig = ''
USERNAME_field='login'
'';
};
extraConfig = {
sort = true;
sorting-method = "fzf";
matching = "fuzzy";
show-icons = false;
disable-history = false;
hide-scrollbar = true;
};
theme = ./theme.rasi;
};
}