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