nix/shared/rofi.nix
2024-10-11 13:34:23 +02:00

14 lines
201 B
Nix

{ pkgs, lib, ... }:
{
programs.rofi = {
enable = true;
plugins = with pkgs; [
rofi-calc
rofi-bluetooth
rofi-screenshot
rofi-power-menu
rofi-pulse-select
pinentry-rofi
];
};
}