Added rofi

This commit is contained in:
FredzyW 2024-10-11 13:34:23 +02:00
parent ac5aabd273
commit f10e88164f

14
shared/rofi.nix Normal file
View file

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