feat(extern): krb5

This commit is contained in:
arcnmx 2024-04-05 15:04:09 -07:00
parent 95e903697a
commit 6db8e4e304
13 changed files with 577 additions and 21 deletions

View file

@ -10,6 +10,7 @@
(import ./barcodebuddy.nix)
(import ./samba.nix)
(import ./nginx.nix)
(import ./krb5.nix)
(final: prev: {
jemalloc =
if final.hostPlatform != "aarch64-darwin"

5
overlays/krb5.nix Normal file
View file

@ -0,0 +1,5 @@
final: prev: {
krb5-ldap = final.krb5.override {
withLdap = true;
};
}