Add wofi configuration to hyprland

This commit is contained in:
Nina Chlóe Kassandra Reiß
2026-04-20 23:11:03 +02:00
parent 5edbfb2025
commit 7b415dbccb

View File

@@ -12,6 +12,12 @@ let
sha256 = "sha256-FTpGumhxY6ChUXqnykO+aSJiFD4A80W0eqx7hXS9Iwc="; 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; profile = import ../../profile.nix;
in in
{ {
@@ -36,7 +42,7 @@ in
windowManager = { windowManager = {
hyprland = { hyprland = {
enable = true; enable = true;
xwayland.enable = true; #xwayland.enable = true;
}; };
}; };
}; };
@@ -55,4 +61,9 @@ in
recursive = true; recursive = true;
}; };
xdg.configFile."wofi" = {
source = dotfiles_wofi;
recursive = true;
};
} }