22 lines
508 B
Nix
22 lines
508 B
Nix
{config, ...}: let
|
|
icon-theme = config.gtk.iconTheme.name;
|
|
in {
|
|
imports = [./gtk.nix];
|
|
programs.rofi = {
|
|
enable = true;
|
|
location = "center";
|
|
pass.enable = true;
|
|
terminal = "wezterm";
|
|
extraConfig = {
|
|
modi = "drun";
|
|
icon-theme = icon-theme;
|
|
show-icons = true;
|
|
drun-display-format = "{icon} {name}";
|
|
disable-history = false;
|
|
hide-scrollbar = true;
|
|
display-run = " Run ";
|
|
};
|
|
theme = ./config/rofi/catppuccin-macchiato.rasi;
|
|
};
|
|
}
|