Skip to content

FloydZ/nixpkgs

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

31 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Original code from drupol

Integrating Your Repository as an Overlay

To use this repository as an overlay in another project, follow these steps:

  1. Add the Repository as an Input:

    Add the following to your nix file to include this repository as an input:

    inputs = {
        custom-nixpkgs.url = "github:FloydZ/nixpkgs";
    };
  2. Include the Overlay in pkgs:

    When constructing pkgs, include the overlay as follows:

    pkgs = import inputs.nixpkgs {
      overlays = [
        inputs.custom-nixpkgs.overlays.default
      ];
    };
  3. Use Your Packages:

    Access the packages in your project like this:

    buildInputs = [ 
      pkgs.example1 
    ];

About

No description, website, or topics provided.

Resources

Code of conduct

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages