nixos/home/hyprland/rofi/default.nix

19 lines
335 B
Nix

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