forked from poz/niksos
11 lines
165 B
Nix
11 lines
165 B
Nix
{
|
|
pkgs,
|
|
...
|
|
}: {
|
|
programs.rofi = {
|
|
enable = true;
|
|
package = pkgs.rofi-wayland;
|
|
cycle = true;
|
|
terminal = "foot";
|
|
};
|
|
}
|