config.nix/modules/window_manager/launcher.nix

20 lines
303 B
Nix

{ config, pkgs,... }:
{
home.packages = [pkgs.cmatrix];
programs.rofi = {
enable = true;
theme = "sidebar";
font = "sans-serif";
package = pkgs.rofi;
modes = [
"drun"
"run"
"window"
"ssh"
];
extraConfig = {
show-icons = true;
};
};
}