No description
Find a file
imnyang e41a4202f4
Some checks failed
CI / list-packages (push) Failing after 3s
CI / check (push) Failing after 2s
cicd
2026-04-24 13:28:59 +00:00
.forgejo/workflows cicd 2026-04-24 13:28:59 +00:00
assets pjsk cursor 2026-04-13 12:53:37 +09:00
pkgs pjsk cursor 2026-04-13 12:53:37 +09:00
.gitignore wow 2026-03-19 18:00:44 +09:00
flake.lock wow 2026-03-19 18:00:44 +09:00
flake.nix pjsk cursor 2026-04-13 12:53:37 +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
    };
}