From f8551c925f4bd2912d3048515e76e79dddb3bcc6 Mon Sep 17 00:00:00 2001 From: Emmet Date: Mon, 14 Aug 2023 19:03:56 -0500 Subject: [PATCH] Intro fuzzel theming --- user/wm/hyprland/hyprland.nix | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/user/wm/hyprland/hyprland.nix b/user/wm/hyprland/hyprland.nix index c35525f1..52520dbf 100644 --- a/user/wm/hyprland/hyprland.nix +++ b/user/wm/hyprland/hyprland.nix @@ -1,4 +1,4 @@ -{ config, lib, pkgs, browser, term, spawnEditor, fetchFromGitHub, ... }: +{ config, lib, pkgs, browser, term, spawnEditor, ... }: { imports = [ @@ -214,4 +214,11 @@ } } ''; + programs.fuzzel.enable = true; + programs.fuzzel.settings = { + main = { + terminal = "${pkgs.alacritty}/bin/alacritty"; + }; + colors.background = config.lib.stylix.colors.base00+"e6"; + }; }