13 lines
222 B
Nix
Raw Normal View History

{ config, pkgs, lib, ... }:
2022-05-03 21:11:31 -04: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-03 21:11:31 -04:00
};
}