summaryrefslogtreecommitdiff
path: root/unmoved-modules/home-manager/hypr/rofi-hyprland.nix
diff options
context:
space:
mode:
Diffstat (limited to 'unmoved-modules/home-manager/hypr/rofi-hyprland.nix')
-rw-r--r--unmoved-modules/home-manager/hypr/rofi-hyprland.nix23
1 files changed, 0 insertions, 23 deletions
diff --git a/unmoved-modules/home-manager/hypr/rofi-hyprland.nix b/unmoved-modules/home-manager/hypr/rofi-hyprland.nix
deleted file mode 100644
index e3644f9..0000000
--- a/unmoved-modules/home-manager/hypr/rofi-hyprland.nix
+++ /dev/null
@@ -1,23 +0,0 @@
-{ 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;
- # }
- ];
- };
-}