Cursor is now available on nixos

I’m not sure how to provide better reporting but would be happy to if I can find out how but the window opens and then nothing happens.

[lazylambda@nixos:~]$ sudo nix-channel --list
nixos https://nixos.org/channels/nixos-24.05
environment.systemPackages = (

  let unstable = import (pkgs.fetchFromGitHub {
        owner="NixOS";
		    repo="nixpkgs";
        rev="1bbe1fee60c10d628efbc639783197d1020c5463";# "ea4c80b39be4c09702b0cb3b42eab59e2ba4f24bs";
       	sha256= "sha256-igwdKMfWCo6pKMldoSKhTsx5QKSM7JXjbK6tCllSzlU=";
	    }) { config = {
             allowUnfree = true;
             overlays = [
               (import (builtins.fetchTarball {
                 url = https://github.com/nix-community/emacs-overlay/archive/master.tar.gz;
               }))
             ];
           };
         };
in
    with pkgs [ <omitted > ] ++
    [ <omitted>
    unstable.code-cursor
    ]
)