Files
nixos-configs/hosts/pinwheel/modules/bemenu/default.nix
2023-10-16 23:24:07 +02:00

18 lines
385 B
Nix

{ pkgs, lib, config, ... }:
let
hyprlandEnabled = config.mod.hyprland.enable;
in
{
home-manager.users.alex = {
home.packages = [ pkgs.bemenu ];
wayland.windowManager.hyprland = lib.mkIf hyprlandEnabled {
settings = {
bind = [
"$mod, SPACE, exec, ${pkgs.bemenu}/bin/bemenu-run --fn 'DejaVuSansM Nerd Font Mono 14'"
];
};
};
};
}