jakehamilton / neovim

My customized version of Neovim, built with Nix.
Other
35 stars 10 forks source link

Question: not issue #3

Closed bashfulrobot closed 4 days ago

bashfulrobot commented 1 month ago

If a person is not using snowfall lib, does this part have to be written differently? Or do you have to use snowfall lib?

Thank you!

outputs = inputs:
        inputs.snowfall-lib.mkFlake {
            inherit inputs;
            src = ./.;

            overlays = with inputs; [
                # Use the overlay provided by this flake.
                neovim.overlays.default

                # There is also a named overlay, though the output is the same.
                neovim.overlays."package/neovim"
            ];
        };
jakehamilton commented 1 month ago

Do you mean if you want to pull in this flake, but you aren't using Snowfall Lib? If so, you can access and use the overlays and packages from this flake like normal, they are standard flake outputs 👍

bashfulrobot commented 4 days ago

Thank you!