10 lines
130 B
Nix
10 lines
130 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
programs.rofi = {
|
|
enable = true;
|
|
theme = "material";
|
|
terminal = "${pkgs.kitty}/bin/kitty";
|
|
};
|
|
}
|