aboutsummaryrefslogtreecommitdiff
path: root/home/rices/original/rofi.nix
blob: a266396094d8b0f96a90a1a3ee56c2717cad9d72 (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 ];
    };
}