https://github.com/lightquantumarchive/nix-overlay
https://github.com/lightquantumarchive/nix-overlay
Last synced: 9 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/lightquantumarchive/nix-overlay
- Owner: LightQuantumArchive
- Created: 2022-09-19T22:06:09.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2022-09-19T22:06:16.000Z (over 3 years ago)
- Last Synced: 2025-09-11T06:17:00.663Z (9 months ago)
- Language: Nix
- Size: 1.95 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Nix Overlay of LightQuantum's Packages
This is a collection of packages that I use on my systems. Feel free to use them if you want.
## Usage
To use this overlay, add the following to your `flake.nix`:
```nix
{
lq = {
url = "github:PhotonQuantum/nix-overlay";
inputs.nixpkgs.follows = "nixpkgs";
};
outputs = { self, nixpkgs, lq }: {
nixosConfigurations = {
myhost = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
modules = [
{ nixpkgs.overlays = [ lq.overlay ]; }
./configuration.nix
];
};
};
};
}
```
Then you can use the packages like this:
```nix
{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [
lq.universal-ctags-pcre2
];
}
```