config.nix/modules/window_manager/launcher.nix
2025-12-17 17:37:52 +01:00

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;
};
};
}