nixos/home/hyprland/rofi/default.nix
Evie Litherland-Smith 432207a239 Re-theme to tokyonight
Re-enable stylix auto mode, disable specific cases where there's a
better theme implementation (emacs, alacritty)

Update use of catppuccin to tokyonight theme, probably missed some
2023-10-12 07:21:40 +01:00

27 lines
534 B
Nix

{ pkgs, config, ... }:
{
programs.rofi = {
enable = true;
package = pkgs.rofi-wayland;
location = "center";
terminal = "${pkgs.alacritty}/bin/alacritty";
pass = {
enable = true;
extraConfig = ''
USERNAME_field='login'
backend=wtype
clibpoard_backend=wl-clipboard
'';
};
extraConfig = {
sort = true;
sorting-method = "fzf";
matching = "fuzzy";
show-icons = false;
disable-history = false;
hide-scrollbar = true;
};
};
}