27 lines
545 B
Nix
27 lines
545 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
home.packages= with pkgs; [
|
|
rofi-wayland
|
|
rofi-bluetooth
|
|
networkmanager_dmenu
|
|
];
|
|
programs.rofi = {
|
|
enable = true;
|
|
package = pkgs.rofi-wayland;
|
|
theme = "glue_pro_blue";
|
|
terminal = "${pkgs.alacritty}/bin/alacritty";
|
|
|
|
extraConfig = {
|
|
modi = "combi,window,drun,ssh";
|
|
show-icons = true;
|
|
drun-display-format = "{icon} {name}";
|
|
disable-history = false;
|
|
hide-scrollbar = true;
|
|
display-drun = " Apps ";
|
|
sidebar-mode = true;
|
|
};
|
|
};
|
|
}
|
|
|