9 lines
120 B
Nix
9 lines
120 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
programs.rofi = {
|
|
enable = true;
|
|
package = pkgs.rofi-wayland;
|
|
theme = "sidebar";
|
|
};
|
|
}
|