19 lines
270 B
Nix
19 lines
270 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
programs.rofi = {
|
|
enable = true;
|
|
theme = "sidebar";
|
|
font = "sans-serif";
|
|
package = pkgs.rofi;
|
|
modes = [
|
|
"drun"
|
|
"run"
|
|
"window"
|
|
"ssh"
|
|
];
|
|
extraConfig = {
|
|
show-icons = true;
|
|
};
|
|
};
|
|
}
|