diff --git a/hyprfocus/default.nix b/hyprfocus/default.nix new file mode 100644 index 0000000..f33c8cb --- /dev/null +++ b/hyprfocus/default.nix @@ -0,0 +1,19 @@ +{ + lib, + hyprland, + hyprlandPlugins, +}: +hyprlandPlugins.mkHyprlandPlugin hyprland { + pluginName = "hyprfocus"; + version = "0.1"; + src = ./.; + + inherit (hyprland) nativeBuildInputs; + + meta = with lib; { + homepage = "https://github.com/hyprwm/hyprland-plugins"; + description = "Hyprland flashfocus plugin"; + license = licenses.bsd3; + platforms = platforms.linux; + }; +}