feat: next generation hyprscroller layout

This commit is contained in:
Youwen Wu 2025-01-16 22:43:06 -08:00
parent 787a4e8c41
commit 92cb6ca5d6
Signed by: youwen
GPG key ID: 865658ED1FE61EC3
4 changed files with 89 additions and 17 deletions

View file

@ -11,5 +11,16 @@ in
{
nixpkgs.overlays = [
(import ../pkgs { inherit pkgs; })
(final: prev: {
hyprlandPlugins.hyprscroller = prev.hyprlandPlugins.hyprscroller.overrideAttrs {
version = "0-unstable-2025-01-16";
src = prev.fetchFromGitHub {
owner = "dawsers";
repo = "hyprscroller";
rev = "e250f38bde9659ee8459c05a173bcc5c2655418f";
hash = "sha256-rqDfY/wPG2F5NfHx6yEWMRybapNwmjjawQ7tWe6gDaw=";
};
};
})
];
}