pinwheel: Extract bemenu module

This commit is contained in:
Alexander Heldt
2023-08-26 17:35:22 +02:00
parent a03973e7ea
commit 496e75820d
4 changed files with 15 additions and 3 deletions

View File

@@ -0,0 +1,14 @@
{ home-manager, pkgs, ... }:
{
home-manager.users.alex = {
home.packages = [ pkgs.bemenu ];
wayland.windowManager.hyprland = {
settings = {
bind = [
"$mod, SPACE, exec, ${pkgs.bemenu}/bin/bemenu-run --fn 'DejaVuSansM Nerd Font Mono 14'"
];
};
};
};
}