Skip to content

breeze256/breeze256-nix-packages

Repository files navigation

Breeze256's NUR Repository

Just my personal NUR repository lol

Available packages

How to add the repository

  1. 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";
  };
  # ...
};
  1. 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
    ];
  };
};
  1. Install packages like pkgs.breeze256-NUR.$somepackage

About

Breeze256's Nix Packages

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages