mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-10 06:22:56 +00:00
19 lines
348 B
Nix
19 lines
348 B
Nix
{ config, pkgs, lib, identity, ... }:
|
|
|
|
{
|
|
|
|
config = lib.mkIf config.services.xserver.enable {
|
|
|
|
home-manager.users.${identity.user}.programs.rofi = {
|
|
enable = true;
|
|
cycle = true;
|
|
location = "center";
|
|
plugins = [ pkgs.rofi-calc pkgs.rofi-emoji ];
|
|
};
|
|
launcherCommand = "${pkgs.rofi}/bin/rofi -show run";
|
|
|
|
};
|
|
|
|
}
|
|
|