nix/home/programs/rofi.nix
2022-02-11 13:10:00 -05:00

22 lines
392 B
Nix

{ pkgs
, ...
}:
{
programs.rofi = {
enable = true;
package = pkgs.rofi-wayland;
cycle = true;
font = "FuraMono Nerd Font Mono 13";
location = "center";
# pass = {
# enable = true;
# stores = [
# "~/passwords"
# ];
# };
extraConfig = {
modi = "run,ssh,drun,filebrowser";
};
terminal = "${pkgs.kitty}/bin/kitty";
};
}