No description
- Nix 100%
|
All checks were successful
CI / list-packages (push) Successful in 2s
CI / build (helium) (push) Successful in 4s
CI / build (helium-sync) (push) Successful in 38s
CI / build (pjsk-cursor) (push) Successful in 3s
CI / build (waterfox-bin) (push) Successful in 4s
CI / build (xcursor-mizuki) (push) Successful in 3s
|
||
|---|---|---|
| .forgejo/workflows | ||
| assets | ||
| modules | ||
| 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
};
}