14 lines
163 B
Nix
14 lines
163 B
Nix
{
|
|
config,
|
|
pkgs,
|
|
lib,
|
|
...
|
|
}: {
|
|
programs.rofi = {
|
|
enable = true;
|
|
location = "top";
|
|
terminal = "kitty";
|
|
theme = "gruvbox-dark-soft";
|
|
};
|
|
}
|