9 lines
174 B
Nix
9 lines
174 B
Nix
{ config, ... }: {
|
|
programs.rofi = {
|
|
enable = true;
|
|
font = "Open Sans 10";
|
|
scrollbar = false;
|
|
terminal = "kitty";
|
|
#theme = builtins.fetchUrl {};
|
|
};
|
|
}
|