nixos-config/config/programs/rofi.nix

12 lines
224 B
Nix
Raw Normal View History

2023-01-01 13:28:25 +00:00
{pkgs, ...}: {
2023-01-01 13:15:47 +00:00
programs.rofi = {
enable = true;
font = "Noto Sans";
extraConfig = {
display-drun = " Apps ";
2023-01-01 13:28:25 +00:00
display-run = " Run ";
2023-01-01 13:15:47 +00:00
};
2023-04-15 19:34:38 +00:00
terminal = "${pkgs.kitty}/bin/kitty";
2023-01-01 13:15:47 +00:00
};
}