Add NixOS module and improve UI navigation and rendering

The flake now includes a NixOS module that enables integration with
system configuration. The TUI has been enhanced with better file
switching using arrow keys, space bar support for toggling values,
improved scrolling logic, styled category headings, and visual selection
feedback. Documentation comments were streamlined and placeholder files
removed.
This commit is contained in:
2025-12-06 22:17:45 +01:00
parent 09faba4f7c
commit ba24e36c7a
7 changed files with 140 additions and 441 deletions

View File

@@ -1,5 +1,4 @@
{
lib,
rustPlatform,
pkg-config,
}:
@@ -8,5 +7,5 @@ rustPlatform.buildRustPackage {
src = ./.;
# buildInputs = [ ];
nativeBuildInputs = [pkg-config];
cargoHash = lib.fakeHash;
cargoHash = "sha256-cFAkKwgLzj6Hr2pq7W/1Ps1G3yKzgEam/qV6p31gadA=";
}