programs: add htpasswd
This commit is contained in:
@@ -66,6 +66,7 @@ in
|
|||||||
"hdparm"
|
"hdparm"
|
||||||
"hping"
|
"hping"
|
||||||
"htop"
|
"htop"
|
||||||
|
"htpasswd"
|
||||||
"iftop"
|
"iftop"
|
||||||
"inetutils" # for telnet
|
"inetutils" # for telnet
|
||||||
"iotop"
|
"iotop"
|
||||||
|
@@ -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
|
||||||
|
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