dotfiles/modules/graphical/dmenu.nix

13 lines
222 B
Nix
Raw Normal View History

{ config, pkgs, lib, ... }:
2022-05-04 01:11:31 +00:00
{
config = lib.mkIf config.services.xserver.enable {
home-manager.users.${config.user}.home.packages = [ pkgs.dmenu ];
gui.launcherCommand = "${pkgs.dmenu}/bin/dmenu_run";
2022-05-04 01:11:31 +00:00
};
}