17 lines
336 B
Nix
17 lines
336 B
Nix
{ pkgs, ... }:
|
|
{
|
|
programs.rofi = {
|
|
enable = true;
|
|
font = "hack 10";
|
|
theme = "slate";
|
|
terminal = "alacritty";
|
|
location = "top-left";
|
|
extraConfig = {
|
|
modi = "window,drun,ssh,combi";
|
|
combi-modi = "window,drun,ssh";
|
|
icon-theme = "Papirus";
|
|
dpi = 100;
|
|
show-icons = true;
|
|
};
|
|
};
|
|
}
|