Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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: 6 days ago
JSON representation

🌨 SN0WM1X (Nix) User Repository.

Awesome Lists containing this project

README

        




sn0wm1x

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)