18 lines
279 B
Nix
18 lines
279 B
Nix
{
|
|
programs.rofi = {
|
|
enable = true;
|
|
theme = "gruvbox-dark";
|
|
font = "Intel One Mono";
|
|
modes = [
|
|
"combi"
|
|
];
|
|
extraConfig = {
|
|
"combi-modes" = [
|
|
"drun"
|
|
"window"
|
|
];
|
|
};
|
|
terminal = "\${pkgs.ghostty}/bin/ghostty";
|
|
};
|
|
}
|