aboutsummaryrefslogtreecommitdiff
path: root/modules/home/i3wm/rofi.nix
blob: 9332efdd58c48030e3fca3b88e4886bbf43aa5b6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{ pkgs, ... }:

{
  programs.rofi = {
      enable = true;
      location = "center";
      cycle = true;
      theme = "purple";
      terminal = "${pkgs.kitty}/bin/kitty";
      modes = [ "drun" "ssh" "emoji" "calc" ];
      plugins = with pkgs; [ rofi-emoji rofi-calc ];
    };
}