11 lines
224 B
Nix
11 lines
224 B
Nix
{pkgs, ...}: {
|
|
programs.rofi = {
|
|
enable = true;
|
|
font = "Noto Sans";
|
|
extraConfig = {
|
|
display-drun = " Apps ";
|
|
display-run = " Run ";
|
|
};
|
|
terminal = "${pkgs.kitty}/bin/kitty";
|
|
};
|
|
}
|