niksos/homes/jacek/gui/rofi/default.nix
2023-07-13 12:49:20 +02:00

14 lines
223 B
Nix

{
config,
pkgs,
...
}: {
config = {
programs.rofi = {
enable = true;
package = pkgs.rofi-wayland;
cycle = true;
terminal = "foot";
};
};
}