summaryrefslogtreecommitdiff
path: root/modules/home-manager/hypr/rofi-hyprland.nix
diff options
context:
space:
mode:
Diffstat (limited to 'modules/home-manager/hypr/rofi-hyprland.nix')
-rw-r--r--modules/home-manager/hypr/rofi-hyprland.nix23
1 files changed, 23 insertions, 0 deletions
diff --git a/modules/home-manager/hypr/rofi-hyprland.nix b/modules/home-manager/hypr/rofi-hyprland.nix
new file mode 100644
index 0000000..e3644f9
--- /dev/null
+++ b/modules/home-manager/hypr/rofi-hyprland.nix
@@ -0,0 +1,23 @@
+{ pkgs, lib, ... }:
+
+{
+ programs.rofi = {
+ enable = true;
+ package = pkgs.rofi;
+ theme = "gruvbox-dark-hard";
+ font = "JetBrains Mono 13";
+
+ plugins = with pkgs; [
+ rofi-calc
+ # rofi-vpn
+ ];
+ modes = [
+ "calc"
+ "window"
+ # {
+ # name = "vpn";
+ # path = lib.getExe pkgs.rofi-vpn;
+ # }
+ ];
+ };
+}