Installing hyprland plugins without home manager?

I did a bunch of looking up but didn’t find any solutions, and hyprpm isn’t available on NixOS. I’m trying to install hypr-dynamic-cursors. I added pkgs.hyprlandPlugins.hypr-dynamic-cursors to environment.systemPackages, and adding the following to my hyprland config, but nothing happened.

    plugin:dynamic-cursors {
    enabled = true
    mode = rotate
    }

I also tried adding the flake but got this error: error: attribute 'aarch64-linux' missingerror: attribute 'aarch64-linux' missing, with this:

    wayland.windowManager.hyprland = {
        enable = true;
        plugins = [ inputs.hypr-dynamic-cursors.packages.${pkgs.system}.hypr-dynamic-cursors ];
    };

It turns out the plugin is only works on x64 since it uses Hyprland hooks which are only supported on x64: NixOS: attribute 'aarch64-linux' missing · Issue #82 · VirtCode/hypr-dynamic-cursors · GitHub.