Skip to content

Noel's `nixpkgs` overlay which contain services and packages

License

Notifications You must be signed in to change notification settings

auguwu/nixpkgs-overlay

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

🐻‍❄️ noel/nixpkgs

This repository contains a Nix overlay that can be applied to nixpkgs to include:

  • Universal builds and NixOS modules for my projects and services.

Usage

{
    inputs = {
        nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
        noel = {
            url = "github:auguwu/nixpkgs-overlay";
            inputs.nixpkgs.follows = "nixpkgs";
        };
    };

    outputs = { nixpkgs, noel-overlay, ... }: let
        overlays = [(import noel)];
        system = "x86_64-linux";

        pkgs = import nixpkgs {
            inherit overlays system;
        };
    in {
        # do whatever with `pkgs` or modify
        # this to your liking
    };
}

License

The code for the services and packages are released under Unlicense. You can freely copy and use the code if you want, I don't really care.

About

Noel's `nixpkgs` overlay which contain services and packages

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published