From 027ef1c398e9e28926b8bf0247f3e1528a4e526d Mon Sep 17 00:00:00 2001 From: Hadi <112569860+anotherhadi@users.noreply.github.com> Date: Wed, 4 Sep 2024 01:44:37 +0200 Subject: [PATCH] Add wofi emoji --- home/system/hyprland/default.nix | 1 + home/system/wofi/default.nix | 4 +++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/home/system/hyprland/default.nix b/home/system/hyprland/default.nix index d68f161..22893d8 100644 --- a/home/system/hyprland/default.nix +++ b/home/system/hyprland/default.nix @@ -85,6 +85,7 @@ "$shiftMod, PRINT, exec, screenshot region" # Screenshot region "ALT, PRINT, exec, screenshot region swappy" # Screenshot region then edit + "$shiftMod, E, exec, ${pkgs.wofi-emoji}/bin/wofi-emoji" # Emoji picker with wofi "$mod, F2, exec, night-shift-off" # Turn off night shift "$mod, F3, exec, night-shift-on" # Turn on night shift ] ++ (builtins.concatLists (builtins.genList (i: diff --git a/home/system/wofi/default.nix b/home/system/wofi/default.nix index ec47ff6..17fd7e7 100644 --- a/home/system/wofi/default.nix +++ b/home/system/wofi/default.nix @@ -1,4 +1,6 @@ -{ config, ... }: { +{ config, pkgs, ... }: { + + home.packages = with pkgs; [ wofi-emoji ]; programs.wofi = { enable = true;