···6060 `asDropin` creates a drop-in file named `overrides.conf`.
6161 Mainly needed to define instances for systemd template units (e.g. `systemd-nspawn@mycontainer.service`).
62626363- See also systemd.unit(1).
6363+ See also {manpage}`systemd.unit(5)`.
6464 '';
6565 };
6666···86868787 This option creates a `.wants` symlink in the given target that exists
8888 statelessly without the need for running `systemctl enable`.
8989- The in systemd.unit(5) manpage described `[Install]` section however is
8989+ The `[Install]` section described in {manpage}`systemd.unit(5)` however is
9090 not supported because it is a stateful process that does not fit well
9191 into the NixOS design.
9292 '';
+1-1
nixos/modules/services/backup/restic.nix
···132132 OnCalendar = "daily";
133133 };
134134 description = lib.mdDoc ''
135135- When to run the backup. See man systemd.timer for details.
135135+ When to run the backup. See {manpage}`systemd.timer(5)` for details.
136136 '';
137137 example = {
138138 OnCalendar = "00:05";
+3-3
nixos/modules/services/networking/kresd.nix
···7979 example = [ "53" ];
8080 description = lib.mdDoc ''
8181 What addresses and ports the server should listen on.
8282- For detailed syntax see ListenStream in man systemd.socket.
8282+ For detailed syntax see ListenStream in {manpage}`systemd.socket(5)`.
8383 '';
8484 };
8585 listenTLS = mkOption {
···8888 example = [ "198.51.100.1:853" "[2001:db8::1]:853" "853" ];
8989 description = lib.mdDoc ''
9090 Addresses and ports on which kresd should provide DNS over TLS (see RFC 7858).
9191- For detailed syntax see ListenStream in man systemd.socket.
9191+ For detailed syntax see ListenStream in {manpage}`systemd.socket(5)`.
9292 '';
9393 };
9494 listenDoH = mkOption {
···9797 example = [ "198.51.100.1:443" "[2001:db8::1]:443" "443" ];
9898 description = lib.mdDoc ''
9999 Addresses and ports on which kresd should provide DNS over HTTPS/2 (see RFC 8484).
100100- For detailed syntax see ListenStream in man systemd.socket.
100100+ For detailed syntax see ListenStream in {manpage}`systemd.socket(5)`.
101101 '';
102102 };
103103 instances = mkOption {
+1-1
nixos/modules/system/boot/systemd/user.nix
···4646 type = types.lines;
4747 example = "DefaultCPUAccounting=yes";
4848 description = lib.mdDoc ''
4949- Extra config options for systemd user instances. See man systemd-user.conf for
4949+ Extra config options for systemd user instances. See {manpage}`systemd-user.conf(5)` for
5050 available options.
5151 '';
5252 };