No description
- Nix 100%
|
Some checks failed
CI / list-packages (pull_request) Successful in 3s
CI / build (helium) (pull_request) Successful in 5s
CI / build (pjsk-cursor) (pull_request) Successful in 3s
CI / build (xcursor-mizuki) (pull_request) Has been cancelled
CI / build (waterfox-bin) (pull_request) Has been cancelled
|
||
|---|---|---|
| .forgejo/workflows | ||
| assets | ||
| pkgs | ||
| .gitignore | ||
| flake.lock | ||
| flake.nix | ||
| README.md | ||
imnyang Nix Packages
imnyang's custom nixpkgs overlay.
Usage
Add the following to your nix configuration:
{
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
};
}