nix/home/rofi/default.nix

23 lines
562 B
Nix
Raw Normal View History

2024-06-05 20:52:52 +02:00
{ pkgs, config, lib, ... }:
{
programs.rofi = {
enable = true;
2024-06-24 20:39:16 +02:00
package = pkgs.rofi-wayland;
2024-06-05 20:52:52 +02:00
theme = "~/nix/home/rofi/gruvbox-material.rasi";
extraConfig = {
modi = "drun";
icon-theme = "Oranchelo";
show-icons = true;
terminal = "alacritty";
drun-display-format = "{icon} {name}";
2024-06-24 20:39:16 +02:00
location = 1;
2024-06-05 20:52:52 +02:00
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
};
};
}