niksos/homes/jacek/gui/rofi/default.nix

15 lines
223 B
Nix
Raw Normal View History

2023-07-13 12:49:20 +02:00
{
config,
pkgs,
...
}: {
config = {
programs.rofi = {
enable = true;
package = pkgs.rofi-wayland;
cycle = true;
terminal = "foot";
};
};
}