Rofi config

This commit is contained in:
Tyler Mayoff 2025-02-16 20:58:36 -05:00
parent 5ffd82053d
commit 03b3066880
3 changed files with 38 additions and 32 deletions

View file

@ -0,0 +1,18 @@
{pkgs, ...}: {
programs.rofi = {
enable = true;
package = pkgs.rofi-wayland;
location = "center";
extraConfig = {
modes = [
"window"
"drun"
"run"
"ssh"
"combi"
];
};
};
}