From ab3e01f1676f25e133556d98fd2bdaf8abb842cd Mon Sep 17 00:00:00 2001 From: Tristan Ross Date: Fri, 10 Oct 2025 20:40:36 -0700 Subject: [PATCH] nixos/tenstorrent: add tt-system-tools --- nixos/modules/hardware/tenstorrent.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/nixos/modules/hardware/tenstorrent.nix b/nixos/modules/hardware/tenstorrent.nix index 0faee3a232a3..2b9bac7b6afe 100644 --- a/nixos/modules/hardware/tenstorrent.nix +++ b/nixos/modules/hardware/tenstorrent.nix @@ -23,8 +23,11 @@ in tt-kmd ]; + environment.systemPackages = with pkgs; [ + tt-system-tools + ]; + # TODO: add tt-smi to environment.systemPackages once https://github.com/NixOS/nixpkgs/pull/444714 is merged - # TODO: add tt-system-tools to environment.systemPackages once https://github.com/NixOS/nixpkgs/pull/444748 is merged }; meta.maintainers = with lib.maintainers; [ RossComputerGuy ];