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" "hdparm"
"hping" "hping"
"htop" "htop"
"htpasswd"
"iftop" "iftop"
"inetutils" # for telnet "inetutils" # for telnet
"iotop" "iotop"

View File

@@ -101,6 +101,7 @@
./haredoc.nix ./haredoc.nix
./helix.nix ./helix.nix
./htop ./htop
./htpasswd.nix
./iio-sensor-proxy.nix ./iio-sensor-proxy.nix
./imagemagick.nix ./imagemagick.nix
./inkscape.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
};
}