From ca6fa66074cfc491ca796c6046f704e32d4e9760 Mon Sep 17 00:00:00 2001 From: Greg Hellings Date: Fri, 8 Sep 2023 04:28:15 +0000 Subject: [PATCH] Add nix-du and tools --- hosts/linode/default.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/hosts/linode/default.nix b/hosts/linode/default.nix index 8273b98..20b68c7 100644 --- a/hosts/linode/default.nix +++ b/hosts/linode/default.nix @@ -1,4 +1,4 @@ -{ ... }: +{ pkgs, ... }: { imports = [ @@ -16,4 +16,8 @@ greg.tailscale.enable = true; networking.hostName = "linode"; networking.domain = "thehellings.com"; + environment.systemPackages = with pkgs; [ + graphviz + nix-du + ]; }