aboutsummaryrefslogblamecommitdiff
path: root/rofi.nix
blob: 359e2ef7035f9006574e8eef26eb95756257f367 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14













                                                
{ config, lib, pkgs, ... }:

{
  programs.rofi = {
    enable = true;
    package = pkgs.rofi;

    borderWidth = 0;
    scrollbar = false;
    separator = "solid";
    terminal = "${pkgs.rxvt-unicode}/bin/urxvt";
    theme = "Monokai";
  };
}