nix/home/rofi/default.nix
2024-06-05 20:52:52 +02:00

23 lines
561 B
Nix

{ pkgs, config, lib, ... }:
{
programs.rofi = {
enable = true;
package = pkgs.rofi-wayland;
theme = "~/nix/home/rofi/gruvbox-material.rasi";
extraConfig = {
modi = "drun";
icon-theme = "Oranchelo";
show-icons = true;
terminal = "alacritty";
drun-display-format = "{icon} {name}";
location = 0;
disable-history = false;
hide-scrollbar = true;
display-drun = " Apps ";
display-network = " 󰤨 Network";
sidebar-mode = true;
};
};
}