linuxware/programs/rofi/default.nix

29 lines
629 B
Nix
Raw Normal View History

2023-11-05 04:53:31 -03:00
{ pkgs, ... }:
{
programs.rofi = {
enable = true;
package = pkgs.rofi-wayland;
font = "FantasqueSansM Nerd Font";
extraConfig = {
disable-history = false;
display-Network = " 󰤨 Network";
display-drun = " Apps ";
display-run = " Run ";
display-window = " Window";
drun-display-format = "{icon} {name}";
hide-scrollbar = true;
2023-12-11 14:09:41 -03:00
icon-theme = "Papirus-Dark";
2023-11-05 04:53:31 -03:00
location = 0;
modi = "run,drun,window";
show-icons = true;
sidebar-mode = true;
2024-07-17 11:30:04 -03:00
terminal = "alacritty";
2023-11-05 04:53:31 -03:00
};
theme = ./catppuccin-frappe.rasi;
2023-11-05 04:53:31 -03:00
};
}