···286286 [fileSystems.overlay](#opt-fileSystems._name_.overlay.lowerdir). See also the
287287 [NixOS docs](#sec-overlayfs).
288288289289+- systemd units can now specify the `Upholds=` and `UpheldBy=` unit dependencies via the aptly
290290+ named `upholds` and `upheldBy` options. These options get systemd to enforce that the
291291+ dependencies remain continuosly running for as long as the dependent unit is in a running state.
292292+289293- `stdenv`: The `--replace` flag in `substitute`, `substituteInPlace`, `substituteAll`, `substituteAllStream`, and `substituteStream` is now deprecated if favor of the new `--replace-fail`, `--replace-warn` and `--replace-quiet`. The deprecated `--replace` equates to `--replace-warn`.
290294291295- A new hardening flag, `zerocallusedregs` was made available, corresponding to the gcc/clang option `-fzero-call-used-regs=used-gpr`.
···7474 '';
7575 };
76767777+ upheldBy = mkOption {
7878+ default = [];
7979+ type = types.listOf unitNameType;
8080+ description = lib.mdDoc ''
8181+ Keep this unit running as long as the listed units are running. This is a continuously
8282+ enforced version of wantedBy.
8383+ '';
8484+ };
8585+7786 wantedBy = mkOption {
7887 default = [];
7988 type = types.listOf unitNameType;
···144153 type = types.listOf unitNameType;
145154 description = lib.mdDoc ''
146155 Start the specified units when this unit is started.
156156+ '';
157157+ };
158158+159159+ upholds = mkOption {
160160+ default = [];
161161+ type = types.listOf unitNameType;
162162+ description = lib.mdDoc ''
163163+ Keeps the specified running while this unit is running. A continuous version of `wants`.
147164 '';
148165 };
149166