nixos: add override example (#1406)

This commit is contained in:
AppleTheGolden 2026-04-10 22:02:50 +02:00 committed by GitHub
parent f5613187b4
commit 0b16e875da
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -2749,6 +2749,12 @@ services.copyparty = {
}; };
# you may increase the open file limit for the process # you may increase the open file limit for the process
openFilesLimit = 8192; openFilesLimit = 8192;
# override the package used by the module to add dependencies, e.g. for hooks
package = pkgs.copyparty.override {
# provides exiftool for bin/hooks/image-noexif.py
extraPackages = [ pkgs.exiftool ];
};
}; };
``` ```