nixos/home/hyprland/rofi/default.nix

26 lines
709 B
Nix
Raw Normal View History

{ pkgs, config, ... }:
let icon-theme = config.gtk.iconTheme.name;
2023-08-08 17:00:35 +01:00
in {
2023-09-05 18:44:29 +01:00
home.packages = with pkgs; [ rofi-power-menu ];
2023-04-03 16:53:23 +01:00
programs.rofi = {
enable = true;
2023-07-18 09:26:10 +01:00
location = "center";
2023-04-03 16:53:23 +01:00
pass.enable = true;
2023-04-07 09:42:12 +01:00
extraConfig = {
modi = "run,drun,power-menu:${pkgs.rofi-power-menu}/bin/rofi-power-menu";
2023-07-18 10:11:38 +01:00
sort = true;
sorting-method = "fzf";
matching = "fuzzy";
icon-theme = icon-theme;
2023-04-07 09:42:12 +01:00
show-icons = true;
2023-07-18 10:11:38 +01:00
application-fallback-icon = "󰣆";
2023-04-07 09:42:12 +01:00
drun-display-format = "{icon} {name}";
disable-history = false;
hide-scrollbar = true;
display-run = " 󰅴 Commands ";
display-drun = " 󱓞 Programs ";
2023-04-07 09:42:12 +01:00
};
theme = ./theme.rasi;
2023-04-03 16:53:23 +01:00
};
}