niksos/homes/jacek/gui/rofi.nix
2023-08-01 14:27:36 +02:00

14 lines
223 B
Nix

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