programs: add htpasswd

This commit is contained in:
2025-06-06 21:00:50 +00:00
parent 8b152137f6
commit f7b872aba0
3 changed files with 9 additions and 0 deletions

View File

@@ -66,6 +66,7 @@ in
"hdparm"
"hping"
"htop"
"htpasswd"
"iftop"
"inetutils" # for telnet
"iotop"

View File

@@ -101,6 +101,7 @@
./haredoc.nix
./helix.nix
./htop
./htpasswd.nix
./iio-sensor-proxy.nix
./imagemagick.nix
./inkscape.nix

View File

@@ -0,0 +1,7 @@
{ pkgs, ... }:
{
sane.programs.htpasswd = {
packageUnwrapped = pkgs.linkBinIntoOwnPackage pkgs.apacheHttpd "htpasswd";
sandbox.autodetectCliPaths = "existingFileOrParent"; # for -c; creating passwd files
};
}