This commit is contained in:
Robin Appelman 2024-07-08 20:37:51 +02:00
commit 19838d3e06

32
README.md Normal file
View file

@ -0,0 +1,32 @@
# Cynthion-flake
A nix flake packaging [cynthion](https://github.com/greatscottgadgets/cynthion/) and related tools.
## Usage
- Add this flake to your flake inputs:
```
cynthion.url = "github:icewind1991/cynthion-flake";
cynthion.inputs.nixpkgs.follows = "nixpkgs";
```
- Apply the overlay:
```
nixpkgs.overlays = [inputs.cynthion.overlays.default];
```
- Install the udev rule
```nix
services.udev.packages = with pkgs; [cynthion-udev];
```
- Install the packages
```nix
environment.systemPackages = with pkgsl [cynthion packetry];
```
## Provided packages
- [cynthion](https://github.com/greatscottgadgets/cynthion/)
- cynthion-udev
- [packetry](https://github.com/greatscottgadgets/packetry)