I believe that this commit has caused some problems with setting any cursor settings. Since with any of the cursor settings in my config my system fails to rebuild but rebuilds fine if they are removed.
I removed the setting from my config that was setting the package for the theme since that is what the readme now says, however even just setting the cursor size results in the same error.
{ pkgs, inputs, ... }:
{
imports = [ inputs.noctalia-greeter.nixosModules.default ];
programs.noctalia-greeter = {
enable = true;
package = inputs.noctalia-greeter.packages.${pkgs.stdenv.hostPlatform.system}.default;
greeter-args = "--user bwop";
settings = {
cursor = {
theme = "breeze_cursors";
size = 20;
};
};
};
}

I believe that this commit has caused some problems with setting any cursor settings. Since with any of the cursor settings in my config my system fails to rebuild but rebuilds fine if they are removed.
I removed the setting from my config that was setting the package for the theme since that is what the readme now says, however even just setting the cursor size results in the same error.