25 lines
379 B
Nix
25 lines
379 B
Nix
|
{ pkgs, username, ... }:
|
||
|
|
||
|
{
|
||
|
environment.systemPackages = with pkgs; [
|
||
|
rofi
|
||
|
rofi-power-menu
|
||
|
];
|
||
|
|
||
|
home-manager.users.${username}.programs.rofi = {
|
||
|
enable = true;
|
||
|
cycle = true;
|
||
|
|
||
|
extraConfig = {
|
||
|
modi = "run,drun,emoji,calc";
|
||
|
};
|
||
|
|
||
|
plugins = with pkgs; [
|
||
|
rofi-bluetooth
|
||
|
rofi-calc
|
||
|
rofi-emoji
|
||
|
rofi-pulse-select
|
||
|
];
|
||
|
};
|
||
|
}
|