From 52d2e894fdf3c54f533b7c9a4cc31abe32b270f4 Mon Sep 17 00:00:00 2001 From: Tristan Ross Date: Fri, 10 Oct 2025 20:40:09 -0700 Subject: [PATCH 1/3] nixos/tenstorrent: add meta.maintainers --- nixos/modules/hardware/tenstorrent.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/nixos/modules/hardware/tenstorrent.nix b/nixos/modules/hardware/tenstorrent.nix index 7c3fa2b92cb0..0faee3a232a3 100644 --- a/nixos/modules/hardware/tenstorrent.nix +++ b/nixos/modules/hardware/tenstorrent.nix @@ -26,4 +26,6 @@ in # 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 ]; } From ab3e01f1676f25e133556d98fd2bdaf8abb842cd Mon Sep 17 00:00:00 2001 From: Tristan Ross Date: Fri, 10 Oct 2025 20:40:36 -0700 Subject: [PATCH 2/3] 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 ]; From 954d1e2a010e8fa2627f6145ef22e524a728087f Mon Sep 17 00:00:00 2001 From: Tristan Ross Date: Fri, 10 Oct 2025 21:39:56 -0700 Subject: [PATCH 3/3] nixos/tenstorrent: add tt-smi --- nixos/modules/hardware/tenstorrent.nix | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/nixos/modules/hardware/tenstorrent.nix b/nixos/modules/hardware/tenstorrent.nix index 2b9bac7b6afe..30840021b714 100644 --- a/nixos/modules/hardware/tenstorrent.nix +++ b/nixos/modules/hardware/tenstorrent.nix @@ -24,10 +24,9 @@ in ]; environment.systemPackages = with pkgs; [ + python3Packages.tt-smi tt-system-tools ]; - - # TODO: add tt-smi to environment.systemPackages once https://github.com/NixOS/nixpkgs/pull/444714 is merged }; meta.maintainers = with lib.maintainers; [ RossComputerGuy ];