nykma / nur-packages

My Nix packages

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

My Nix packages definition

Build and populate cache

Cachix Cache

How to use

Follow NUR's official guide to intergrate all NUR repos in your system.

Or, if you only want to install my repo:

{ # flake.nix
  nixConfig = {
    extra-substituters = [
      "https://nykma.cachix.org"
    ];

    extra-trusted-public-keys = [
      "nykma.cachix.org-1:z04hZH9YnR1B2lpLperwiazdkaT5yczgOPa1p/NHqK4="
    ];
  };

  inputs = {
    # ...
    nykma.url = "github:nykma/nur-packages";
    nykma.inputs.nixpkgs.follows = "nixpkgs";
    # ...
  };

  outputs = { self, nykma, ... } @ inputs: {
    # ...
  }
}
# your-system/configuration.nix
nix.settings = {
  extra-substituters = [
    "https://nykma.cachix.org"
  ];

  extra-trusted-public-keys = [
    "nykma.cachix.org-1:z04hZH9YnR1B2lpLperwiazdkaT5yczgOPa1p/NHqK4="
  ];
};

LICENSE

MIT for all .nix and .patch files I wrote. See LICENSE file for more info.

About

My Nix packages

License:MIT License


Languages

Language:Nix 100.0%