Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/sn0wm1x/hw


https://github.com/sn0wm1x/hw

Last synced: 11 days ago
JSON representation

Awesome Lists containing this project

README

        




sn0wm1x

SN0WM1X Hardware

## About

WIP, which may eventually be contributed to NixOS Hardware.

## Profiles

- [OnePlus 6 (enchilada)](/oneplus/enchilada/)

## Usage

```nix
{
description = "NixOS configuration with flakes";
inputs.sn0wm1x-hardware.url = "github:sn0wm1x/hw";

outputs = { self, nixpkgs, sn0wm1x-hardware }: {
# replace with your actual hostname
nixosConfigurations. = nixpkgs.lib.nixosSystem {
# ...
modules = [
# ...
# add your model from this list: https://github.com/sn0wm1x/hw/blob/main/flake.nix
sn0wm1x-hardware.nixosModules.oneplus-enchilada
];
};
};
}
```