From f10e88164f0bdc0fcb9ab454948a3dfbe739ce46 Mon Sep 17 00:00:00 2001 From: FredzyW Date: Fri, 11 Oct 2024 13:34:23 +0200 Subject: [PATCH] Added rofi --- shared/rofi.nix | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 shared/rofi.nix diff --git a/shared/rofi.nix b/shared/rofi.nix new file mode 100644 index 0000000..843a7ea --- /dev/null +++ b/shared/rofi.nix @@ -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 + ]; + }; +}