No description
Find a file
mizuki 9be5bb4d69
All checks were successful
CI / list-packages (pull_request) Successful in 3s
CI / build (helium) (pull_request) Successful in 14s
CI / build (pjsk-cursor) (pull_request) Successful in 3s
CI / build (waterfox-bin) (pull_request) Successful in 5s
CI / build (xcursor-mizuki) (pull_request) Successful in 3s
pkgs/helium: update to 0.11.3.2
2026-04-26 02:13:01 +09:00
.forgejo/workflows wow 2026-04-26 02:11:42 +09:00
assets pjsk cursor 2026-04-13 12:53:37 +09:00
pkgs pkgs/helium: update to 0.11.3.2 2026-04-26 02:13:01 +09:00
.gitignore wow 2026-03-19 18:00:44 +09:00
flake.lock wow 2026-04-26 02:11:42 +09:00
flake.nix wow 2026-04-26 02:11:42 +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
    };
}