From 6b59e71417f06cc1289e879df48ffb0095052583 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Felix=20Schr=C3=B6ter?= Date: Mon, 21 Jul 2025 13:25:24 +0200 Subject: [PATCH] feat(nix): add nix-tree --- system/nix.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/system/nix.nix b/system/nix.nix index 927b138..36fa247 100644 --- a/system/nix.nix +++ b/system/nix.nix @@ -54,4 +54,8 @@ in '' nix flake update ${inputsToUpdateStr} --flake ${config.system.autoUpgrade.flake} ''; + + environment.systemPackages = with pkgs; [ + unstable.nix-tree + ]; }