nixcfg/homeManagerModules/apps/rofi/default.nix

85 lines
1.9 KiB
Nix
Raw Normal View History

{
config,
lib,
pkgs,
...
}: let
cfg = config.ar.home;
in {
config = lib.mkIf cfg.apps.rofi.enable {
2024-07-26 00:21:42 -04:00
home.packages = [
pkgs.networkmanager_dmenu
pkgs.rofi-bluetooth
pkgs.rofi-rbw-wayland
2024-07-26 00:21:42 -04:00
];
programs.rofi = {
enable = true;
location = "center";
package = pkgs.rofi-wayland;
2024-07-29 21:47:21 -04:00
plugins = [
pkgs.rofi-power-menu
pkgs.rofi-file-browser
];
terminal = lib.getExe cfg.defaultApps.terminal;
extraConfig = {
2024-07-29 21:47:21 -04:00
case-sensitive = false;
click-to-exit = true;
combi-display-format = "{text}";
combi-hide-mode-prefix = true;
combi-modes = [
"window"
"drun"
"ssh"
2024-07-29 21:47:21 -04:00
"recursivebrowser"
];
display-combi = "Search";
2024-07-29 21:47:21 -04:00
display-drun = "Apps";
display-filebrowser = "Files";
2024-07-29 21:47:21 -04:00
display-recursivebrowser = "Files";
display-run = "Run";
display-ssh = "SSH";
display-window = "Windows";
drun-display-format = "{icon} {name}";
hover-select = true;
2024-07-30 15:34:06 -04:00
matching = "fuzzy";
me-accept-entry = "MousePrimary";
me-select-entry = "";
2024-07-29 21:47:21 -04:00
modes = "drun,window,ssh,recursivebrowser";
scrollbar = false;
show-display-name = false;
show-icons = true;
sort = true;
window-format = " {c} {t}";
window-thumbnail = false;
};
};
xdg.configFile = {
"rofi-rbw.rc".text = ''
prompt "Bitwarden"
clear-after 60
'';
"networkmanager-dmenu/config.ini".text = ''
[dmenu]
dmenu_command = ${lib.getExe config.programs.rofi.package}
highlight = True
[dmenu_passphrase]
obscure = True
[editor]
gui = ${pkgs.networkmanagerapplet}/bin/nm-connection-editor
gui_if_available = True
terminal = ${lib.getExe cfg.defaultApps.terminal}
'';
};
};
}