nixos/home/hyprland/rofi/default.nix
Evie Litherland-Smith b102f9e209 Major cleanup for files
Reduce complexity and in flake.nix and be more efficient in re-using
things

Removed some reduandant files in home/ and tidied up the structure
somewhat

Moved things from desktop, gui, etc... to top level

Changed env to shell, indiv shell expressions import relevant others
2023-07-16 17:35:36 +01:00

22 lines
497 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 = ./catppuccin-macchiato.rasi;
};
}