No description
Find a file
imnyang 9e198170ff
All checks were successful
CI / list-packages (push) Successful in 3s
CI / build (pjsk-cursors) (push) Successful in 3s
CI / build (waterfox-bin) (push) Successful in 4s
CI / build (xcursor-mizuki) (push) Successful in 3s
feat: filter out specific pjsk-cursor packages from the build matrix
2026-04-25 13:11:27 +09:00
.forgejo/workflows feat: filter out specific pjsk-cursor packages from the build matrix 2026-04-25 13:11:27 +09:00
assets pjsk cursor 2026-04-13 12:53:37 +09:00
pkgs refactor: optimize attribute flattening in pjsk-cursor package definition 2026-04-25 12:57:16 +09:00
.gitignore wow 2026-03-19 18:00:44 +09:00
flake.lock refactor: optimize attribute flattening in pjsk-cursor package definition 2026-04-25 12:57:16 +09:00
flake.nix feat: add flattened package exports for improved CI visibility in flake.nix 2026-04-25 12:55:22 +09:00
README.md wow 2026-03-19 18:00:44 +09:00

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
    };
}