Just my personal NUR repository lol
- Add this to your inputs:
inputs = {
# ...
breeze256-NUR = {
url = "github:breeze256/breeze256-nix-packages";
inputs.nixpkgs.follows = "nixpkgs";
};
# ...
};
Or, if you are in China, add this:
inputs = {
# ...
breeze256-NUR = {
url = "git+https://mirror.ghproxy.com/https://github.com/breeze256/breeze256-nix-packages";
inputs.nixpkgs.follows = "nixpkgs";
};
# ...
};
- add this to your outputs:
outputs = { self, nixpkgs, ... }@inputs: {
nixosConfigurations."nixos" = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
modules = [
# Add below
({
nixpkgs.overlays = [
(final: prev: {
breeze256-NUR = inputs.breeze256-NUR.packages."${prev.system}";
})
];
})
# Add above
./configuration.nix
];
};
};
- Install packages like
pkgs.breeze256-NUR.$somepackage