- jsonst JSON Schema hacking toolset
- xonv Ultimate data formats exchange commandline tool
- ubmsc BMS monitoring tool
- bluer-tools A tools for GATT services, L2CAP and RFCOMM sockets on Linux
- easytier A simple, secure, decentralized VPN mesh network solution
- ukvm A network KVM solution in Rust
- godap A complete TUI for LDAP
- victoriametrics-datasource Grafana datasource for VictoriaMetrics
- nvidia_gpu_exporter Nvidia GPU exporter for prometheus using nvidia-smi binary
- FDT viewer Flattened Device Tree Viewer written in Qt
- OpenOCD SVD OpenOCD and CMSIS-SVD based peripheral register viewer
- CadQuery Python parametric CAD scripting framework based on OCC
- CadQuery WareHouse CadQuery parametric part collection
- CadQuery Gears CadQuery based involute gear parametric modelling
- CadQuery Kit CadQuery tools and helpers for building 3D CAD models
- CadQuery Plugins A collection of community contributed plugins that extend the functionality of CadQuery
- CadQuery Editor CadQuery GUI editor based on PyQT
- Build123D A python CAD programming library
- Build123D WareHouse A build123d parametric part collection
- JupyterLab Language Packs Language packs for JupyterLab ecosystem (
python3Packages.jupyterlab-language-pack-{lang-code}
) - Mayo 3D CAD viewer and converter based on Qt + OpenCascade
- Ultimaker Cura 3D printer / slicing GUI built on top of the Uranium framework
- gost-fonts Russian GOST fonts
Add channel:
$ nix-channel --add https://github.com/katyo/nixos-addons/archive/master.tar.gz nixos-addons
$ nix-channel --update nixos-addons
Edit system configuration:
{
imports = [
(import <nixos-addons>)
];
}
Or add overlay to ~/.config/nixpkgs/overlays.nix
:
[
(import <nixos-addons/packages>)
]
Or use in shell:
{ pkgs ? import <nixpkgs> {
overlays = [
(import <nixos-addons/packages>)
];
}, ... }:
with pkgs;
mkShell {
buildInputs = [
// packages
];
}