Configure rofi and add plugins

This commit is contained in:
Oliver Davies 2024-11-25 08:03:59 +00:00
parent 8a6be4f1de
commit 42ba264047
3 changed files with 26 additions and 1 deletions

View file

@ -0,0 +1,24 @@
{ 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
];
};
}