Files
garandos-tui/default.nix
GarandPLG ba24e36c7a 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.
2025-12-06 22:17:45 +01:00

12 lines
235 B
Nix

{
rustPlatform,
pkg-config,
}:
rustPlatform.buildRustPackage {
name = "garandos-tui";
src = ./.;
# buildInputs = [ ];
nativeBuildInputs = [pkg-config];
cargoHash = "sha256-cFAkKwgLzj6Hr2pq7W/1Ps1G3yKzgEam/qV6p31gadA=";
}