Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sn0wm1x/ur
π¨ SN0WM1X (Nix) User Repository.
https://github.com/sn0wm1x/ur
nix nix-packages nix-user-repository nixos nixpkgs nur overlays
Last synced: 3 months ago
JSON representation
π¨ SN0WM1X (Nix) User Repository.
- Host: GitHub
- URL: https://github.com/sn0wm1x/ur
- Owner: sn0wm1x
- License: mit
- Created: 2024-06-11T08:15:08.000Z (7 months ago)
- Default Branch: main
- Last Pushed: 2024-09-24T12:44:07.000Z (4 months ago)
- Last Synced: 2024-09-28T09:03:46.115Z (4 months ago)
- Topics: nix, nix-packages, nix-user-repository, nixos, nixpkgs, nur, overlays
- Language: Nix
- Homepage: https://nur.nix-community.org/repos/sn0wm1x/
- Size: 72.3 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
SN0WM1X (Nix) User Repository
**[β
βLibβ
β](/lib/)**β
**[β
βModulesβ
β](/modules/)**β
**[β
βOverlaysβ
β](/overlays/)**β
**[β
βPackagesβ
β](/pkgs/)**---
![Build and populate cache](https://github.com/sn0wm1x/ur/workflows/Build%20and%20populate%20cache/badge.svg) [![Cachix Cache](https://img.shields.io/badge/cachix-sn0wm1x-blue.svg)](https://sn0wm1x.cachix.org)
## Usage
###### nix run
```bash
nix run github:sn0wm1x/ur#example-package
```###### nix flake (standalone)
```nix
# flake.nix
{
inputs.sn0wm1x.url = "github:sn0wm1x/ur";
inputs.sn0wm1x.inputs.nixpkgs.follows = "nixpkgs";outputs = {
nixosConfigurations.myConfig = nixpkgs.lib.nixosSystem {
# ...
modules = [
# nur.nixosModules.nur
sn0wm1x.nixosModules.hatsu
];
};
};
}
```###### nix flake (combined)
```nix
home.packages = with pkgs; [
nur.repos.sn0wm1x.example-package
];
```## License
[MIT](/LICENSE.md)