nixos-config/config/programs/rofi.nix

12 lines
222 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
};
terminal = "${pkgs.foot}/bin/foot";
};
}