22 lines
526 B
Nix
22 lines
526 B
Nix
|
{ pkgs, config, lib, ... }:
|
||
|
{
|
||
|
|
||
|
programs.rofi = {
|
||
|
enable = true;
|
||
|
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;
|
||
|
};
|
||
|
};
|
||
|
}
|