summary refs log tree commit diff stats
path: root/user/modules/rofi.nix
blob: b34af8817a8440674f06ebb9ab9033e5ee5117ac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{ config, pkgs, ... }:

{
  xdg.configFile."networkmanager-dmenu/config.ini".text = ''
    [dmenu]
    dmenu_command = /run/current-system/sw/bin/rofi

    [editor]
    terminal = xst
    gui_if_available = false
  '';
  programs.rofi = {
    enable = true;
    extraConfig = ''
      rofi.matching:            glob
      rofi.separator-style:     none

      rofi.line-padding:        2

      rofi.display-run:         cmd
      rofi.display-drun:        run
      rofi.display-window:      win
    '';
  };
}