An open API service indexing awesome lists of open source software.

https://github.com/johnae/nix-misc

Assorted Nix utility functions and derivations.
https://github.com/johnae/nix-misc

Last synced: about 1 year ago
JSON representation

Assorted Nix utility functions and derivations.

Awesome Lists containing this project

README

          

# nix-misc

Nix utility functions and derivations.

## Usage

This is intended to be used as a Nix flake input. Eg. (contrived example):

```nix
{
description = "Flake using Nix-misc";

inputs.nix-misc.url = "github:johnae/nix-misc";
outputs = { self, nixpkgs, nix-misc }:
let
pkgs = import inputs.nixpkgs {
localSystem = { system = "x86_64-linux"; };
overlays = [
inputs.nix-misc.overlay
];
config = {
allowUnfree = true;
};
};
in
{
# ... use pkgs with nix-misc overlay here ...
}
}
```