programs: add htpasswd
This commit is contained in:
@@ -66,6 +66,7 @@ in
|
||||
"hdparm"
|
||||
"hping"
|
||||
"htop"
|
||||
"htpasswd"
|
||||
"iftop"
|
||||
"inetutils" # for telnet
|
||||
"iotop"
|
||||
|
@@ -101,6 +101,7 @@
|
||||
./haredoc.nix
|
||||
./helix.nix
|
||||
./htop
|
||||
./htpasswd.nix
|
||||
./iio-sensor-proxy.nix
|
||||
./imagemagick.nix
|
||||
./inkscape.nix
|
||||
|
7
hosts/common/programs/htpasswd.nix
Normal file
7
hosts/common/programs/htpasswd.nix
Normal file
@@ -0,0 +1,7 @@
|
||||
{ pkgs, ... }:
|
||||
{
|
||||
sane.programs.htpasswd = {
|
||||
packageUnwrapped = pkgs.linkBinIntoOwnPackage pkgs.apacheHttpd "htpasswd";
|
||||
sandbox.autodetectCliPaths = "existingFileOrParent"; # for -c; creating passwd files
|
||||
};
|
||||
}
|
Reference in New Issue
Block a user