This commit is contained in:
암냥 2026-03-19 18:00:44 +09:00
commit 7467b40e30
No known key found for this signature in database
7 changed files with 393 additions and 0 deletions

23
README.md Normal file
View 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
};
}