Skip to content

Latest commit

 

History

History
53 lines (40 loc) · 1.15 KB

README.md

File metadata and controls

53 lines (40 loc) · 1.15 KB

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.