wow
This commit is contained in:
commit
7467b40e30
7 changed files with 393 additions and 0 deletions
23
README.md
Normal file
23
README.md
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
# imnyang Nix Packages
|
||||
imnyang's custom nixpkgs overlay.
|
||||
|
||||
## Usage
|
||||
Add the following to your nix configuration:
|
||||
|
||||
```nix
|
||||
{
|
||||
inputs = {
|
||||
nixpkgs.url = "...";
|
||||
imnyang.url = "git+https://git.mizuki.guru/imnyang/nix-packages.git";
|
||||
};
|
||||
|
||||
outputs = { imnyang, nixpkgs, ... }:
|
||||
let pkgs = import nixpkgs {
|
||||
system = "x86_64-linux";
|
||||
overlays = [ imnyang.overlays.default ];
|
||||
};
|
||||
{
|
||||
# use some packages
|
||||
};
|
||||
}
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue