Files
brianmcgee 7c33fab397 metrics: add grafatui package
Add https://github.com/fedexist/grafatui as a package to this flake for
use as a terminal-based metrics dashboard.

Simply structure of the packages directory at the same time.
2026-05-15 08:56:47 +01:00

17 lines
407 B
Nix

{ inputs, lib, ... }:
{
perSystem =
{ pkgs, system, ... }:
let
ethPkgs = inputs.ethereum-nix.packages.${system};
in
{
packages = lib.optionalAttrs (lib.hasSuffix "-linux" system) {
eth-beacon-genesis = pkgs.callPackage ./eth-beacon-genesis.nix {
inherit (ethPkgs) bls_1_86;
};
grafatui = pkgs.callPackage ./grafatui.nix { };
};
};
}