nix/home/rofi/default.nix

22 lines
544 B
Nix
Raw Normal View History

2024-07-08 14:52:27 +02:00
{ pkgs, lib, ... }:
2024-06-05 20:52:52 +02:00
{
programs.rofi = {
enable = true;
2024-06-24 20:39:16 +02:00
package = pkgs.rofi-wayland;
2024-07-05 20:32:21 +02:00
theme = lib.mkForce "~/nix/home/rofi/gruvbox-material.rasi";
2024-06-05 20:52:52 +02:00
extraConfig = {
modi = "drun";
icon-theme = "Oranchelo";
show-icons = true;
terminal = "alacritty";
drun-display-format = "{icon} {name}";
disable-history = false;
hide-scrollbar = true;
display-drun = " Apps ";
display-network = " 󰤨 Network";
2024-06-24 20:39:16 +02:00
sidebar-mode = false;
2024-06-05 20:52:52 +02:00
};
};
}