From 5c49ca4687e2d2be1ec38a59059668379705903d Mon Sep 17 00:00:00 2001 From: Infinidoge Date: Thu, 23 Jun 2022 01:17:16 -0400 Subject: [PATCH] tweak(nix): add nix-du to system packages --- modules/devos/nix.nix | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/modules/devos/nix.nix b/modules/devos/nix.nix index 87a4b99..96ac5ca 100644 --- a/modules/devos/nix.nix +++ b/modules/devos/nix.nix @@ -48,7 +48,13 @@ with lib; environment = { - systemPackages = with pkgs; [ nix-index nixos-option nixfmt nixpkgs-fmt ]; + systemPackages = with pkgs; [ + nix-index + nixos-option + nixfmt + nixpkgs-fmt + nix-du + ]; shellAliases = let ifSudo = mkIf config.security.sudo.enable;