mirror of
https://codeberg.org/tmayoff/.dotfiles.git
synced 2025-12-06 16:58:34 -05:00
18 lines
249 B
Nix
18 lines
249 B
Nix
{pkgs, ...}: {
|
|
programs.rofi = {
|
|
enable = true;
|
|
package = pkgs.rofi-wayland;
|
|
|
|
location = "center";
|
|
|
|
extraConfig = {
|
|
modes = [
|
|
"window"
|
|
"drun"
|
|
"run"
|
|
"ssh"
|
|
"combi"
|
|
];
|
|
};
|
|
};
|
|
}
|