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; + }; + }