https://github.com/dcsunset/nur-packages
My personal NUR repository
https://github.com/dcsunset/nur-packages
Last synced: 3 months ago
JSON representation
My personal NUR repository
- Host: GitHub
- URL: https://github.com/dcsunset/nur-packages
- Owner: DCsunset
- License: mit
- Created: 2023-08-18T15:20:18.000Z (almost 2 years ago)
- Default Branch: master
- Last Pushed: 2025-02-13T14:38:43.000Z (4 months ago)
- Last Synced: 2025-02-13T15:32:58.674Z (4 months ago)
- Language: Nix
- Homepage:
- Size: 210 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# nur-packages
**My personal [NUR repository](https://nur.nix-community.org/repos/dcsunset/)**

## Usage
You can follow the [NUR guide](https://github.com/nix-community/NUR#how-to-use) to import the whole NUR namespace
and use the repo as `nur.repos.dcsunset`.
This will use the official build of this NUR repo.To use this repo directly (latest) without the whole NUR namespace,
add the following to your `flake.nix` config:```nix
{
inputs = {
nur-dcsunset = {
url = "github:DCsunset/nur-packages";
inputs.nixpkgs.follows = "nixpkgs";
};
};outputs = { self, nixpkgs, ... }@inputs: {
nixosConfigurations.default = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
modules = [
# Add packages from this repo
{
nixpkgs.overlays = [ inputs.nur-dcsunset.overlays.pkg ];
}
];
};
};
}
```## Acknowledgement
Some of the modules and packages are derived from nixpkgs for testing or applying minor fixes.
Thanks to nixpkgs contributors!