nix/home/rofi/default.nix
2024-06-24 16:21:10 +02:00

23 lines
563 B
Nix

{ pkgs, config, lib, ... }:
{
programs.rofi = {
enable = true;
#packge = "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;
};
};
}