dotfiles/modules/desktop/rofi.nix

19 lines
340 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}.programs.rofi = {
2022-05-04 01:11:31 +00:00
enable = true;
cycle = true;
location = "center";
plugins = [ pkgs.rofi-calc pkgs.rofi-emoji ];
};
gui.launcherCommand = "${pkgs.rofi}/bin/rofi -show run";
2022-05-04 01:11:31 +00:00
};
}