Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dcsunset/nur-packages
My personal NUR repository
https://github.com/dcsunset/nur-packages
Last synced: 3 days 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 (over 1 year ago)
- Default Branch: master
- Last Pushed: 2024-12-15T14:37:47.000Z (19 days ago)
- Last Synced: 2024-12-15T15:32:20.036Z (19 days ago)
- Language: Nix
- Homepage:
- Size: 222 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/)**
![Build and populate cache](https://github.com/DCsunset/nur-packages/workflows/Build%20and%20populate%20cache/badge.svg)
[![Cachix Cache](https://img.shields.io/badge/cachix-dcsunset-blue.svg)](https://dcsunset.cachix.org)## 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 ];
}# Binary cache (optional)
({ ... }: {
nix.settings.substituters = [ "https://dcsunset.cachix.org" ];
nix.settings.trusted-public-keys = [ "dcsunset.cachix.org-1:EGXkNb1C+03/dYGG5QOFt9cXIiZcuwMLDcdZw1wlkU0=" ];
})
];
};
};
}
```## Acknowledgement
Some of the modules and packages are derived from nixpkgs for testing or applying minor fixes.
Thanks to nixpkgs contributors!