From 7b415dbccba6730ac1a0b0dfed5260b525ced2ab Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nina=20Chl=C3=B3e=20Kassandra=20Rei=C3=9F?= Date: Mon, 20 Apr 2026 23:11:03 +0200 Subject: [PATCH] Add wofi configuration to hyprland --- desktop-environment/window-manager/hyprland.nix | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/desktop-environment/window-manager/hyprland.nix b/desktop-environment/window-manager/hyprland.nix index 1001822..127987f 100644 --- a/desktop-environment/window-manager/hyprland.nix +++ b/desktop-environment/window-manager/hyprland.nix @@ -12,6 +12,12 @@ let sha256 = "sha256-FTpGumhxY6ChUXqnykO+aSJiFD4A80W0eqx7hXS9Iwc="; }; + dotfiles_wofi = pkgs.fetchgit { + url = "https://git.nichkara.eu/dotfiles/wofi.git"; + rev = "47bbe8a40de55871ad6106b2fa5df18d6ec77e39"; + sha256 = "sha256-lrQfc9nQinbd1hbf1WmLm8NMRqQKb1ti3v+074+Oo5Y="; + }; + profile = import ../../profile.nix; in { @@ -36,7 +42,7 @@ in windowManager = { hyprland = { enable = true; - xwayland.enable = true; + #xwayland.enable = true; }; }; }; @@ -55,4 +61,9 @@ in recursive = true; }; + xdg.configFile."wofi" = { + source = dotfiles_wofi; + recursive = true; + }; + }