Analysis updated 2026-05-18
Check exactly what would be downloaded before adding a new package
Find and safely remove unused entries in the Nix store
Export a ready-to-paste config snippet for a package you want to keep
Edit NixOS configuration files with an automatic backup safety net
| manelinux/nixard | alexrosbach/replibook | arlandaren/proagents | |
|---|---|---|---|
| Stars | 25 | 25 | 25 |
| Language | Python | Python | Python |
| Setup difficulty | easy | easy | easy |
| Complexity | 2/5 | 2/5 | 1/5 |
| Audience | ops devops | ops devops | vibe coder |
Figures from each repo's GitHub metadata at analysis time.
Requires an existing NixOS system, can be run without installing via a single Nix command.
nixard is an interactive terminal application for NixOS users who want a clearer picture of what packages are installed on their system and what it would actually cost to add more. NixOS is a Linux distribution with an unusual package management approach where software and its dependencies are stored in an isolated directory called the Nix store. Over time that store can accumulate entries that are no longer active, and figuring out exactly what is in use, what can be cleaned up, and what a new package would download is not always straightforward with the standard tools. nixard addresses that by showing the full picture in a keyboard-driven interface. The core feature is dependency closure analysis. When you look up a package, nixard walks its full tree of dependencies and cross-references that against your local store. It tells you which dependencies you already have active, which are present in the store but unused, which can be safely removed, and which would need to be downloaded fresh. It calculates the real download size and disk usage, rather than just reporting theoretical numbers. nixard also reads your NixOS configuration files automatically. It understands several ways NixOS systems are set up, including traditional configuration files, flake-based setups, and Home Manager for user-level configuration. When you find a package you want to keep, you can mark it and export a ready-to-paste Nix declaration for whichever configuration style you use. Export history is saved between sessions so you can return to previous selections. A built-in split editor lets you open and modify your actual NixOS configuration files without leaving the terminal interface. It creates a backup before saving any changes and requires an explicit save action before anything is written. The tool runs entirely without performing any builds or modifying your system during inspection. It can be launched without permanent installation using a single Nix command. The project is licensed under MIT.
A terminal app for NixOS that shows what packages are installed, what depends on what, and the real disk and download cost of adding something new.
Mainly Python. The stack also includes Nix, NixOS, Home Manager.
Use freely for any purpose, including commercial use, as long as you keep the copyright notice.
Setup difficulty is rated easy, with roughly 5min to a first successful run.
Mainly ops devops.
This repo across BitVibe Labs
Verify against the repo before relying on details.