mirror of
https://github.com/9001/copyparty.git
synced 2026-04-12 15:22:32 -06:00
nixos: add override example (#1406)
This commit is contained in:
parent
f5613187b4
commit
0b16e875da
|
|
@ -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 ];
|
||||||
|
};
|
||||||
};
|
};
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue