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="
];
};
MIT for all .nix
and .patch
files I wrote. See LICENSE
file for more info.