lddtree: ship

This commit is contained in:
2025-06-27 07:16:23 +00:00
parent 7e84c7e237
commit 5a7310759e
3 changed files with 9 additions and 0 deletions

View File

@@ -155,6 +155,7 @@ in
# "gopass-jsonapi"
# "helix" # text editor
"htop" # needed as a user package, for ~/.config/htop
"lddtree"
# "libsecret" # for managing user keyrings (secret-tool)
# "lm_sensors" # for sensors-detect
# "lshw"

View File

@@ -112,6 +112,7 @@
./komikku.nix
./koreader
./krita.nix
./lddtree.nix
./less.nix
./lftp.nix
./lgtrombetta-compass.nix

View File

@@ -0,0 +1,7 @@
{ pkgs, ... }:
{
sane.programs.lddtree = {
packageUnwrapped = pkgs.linkBinIntoOwnPackage pkgs.pax-utils "lddtree";
sandbox.autodetectCliPaths = "existingFile";
};
}