lol

nixos/doc: fix some manpage references

+7 -7
+2 -2
nixos/lib/systemd-unit-options.nix
··· 60 60 `asDropin` creates a drop-in file named `overrides.conf`. 61 61 Mainly needed to define instances for systemd template units (e.g. `systemd-nspawn@mycontainer.service`). 62 62 63 - See also systemd.unit(1). 63 + See also {manpage}`systemd.unit(5)`. 64 64 ''; 65 65 }; 66 66 ··· 86 86 87 87 This option creates a `.wants` symlink in the given target that exists 88 88 statelessly without the need for running `systemctl enable`. 89 - The in systemd.unit(5) manpage described `[Install]` section however is 89 + The `[Install]` section described in {manpage}`systemd.unit(5)` however is 90 90 not supported because it is a stateful process that does not fit well 91 91 into the NixOS design. 92 92 '';
+1 -1
nixos/modules/services/backup/restic.nix
··· 132 132 OnCalendar = "daily"; 133 133 }; 134 134 description = lib.mdDoc '' 135 - When to run the backup. See man systemd.timer for details. 135 + When to run the backup. See {manpage}`systemd.timer(5)` for details. 136 136 ''; 137 137 example = { 138 138 OnCalendar = "00:05";
+3 -3
nixos/modules/services/networking/kresd.nix
··· 79 79 example = [ "53" ]; 80 80 description = lib.mdDoc '' 81 81 What addresses and ports the server should listen on. 82 - For detailed syntax see ListenStream in man systemd.socket. 82 + For detailed syntax see ListenStream in {manpage}`systemd.socket(5)`. 83 83 ''; 84 84 }; 85 85 listenTLS = mkOption { ··· 88 88 example = [ "198.51.100.1:853" "[2001:db8::1]:853" "853" ]; 89 89 description = lib.mdDoc '' 90 90 Addresses and ports on which kresd should provide DNS over TLS (see RFC 7858). 91 - For detailed syntax see ListenStream in man systemd.socket. 91 + For detailed syntax see ListenStream in {manpage}`systemd.socket(5)`. 92 92 ''; 93 93 }; 94 94 listenDoH = mkOption { ··· 97 97 example = [ "198.51.100.1:443" "[2001:db8::1]:443" "443" ]; 98 98 description = lib.mdDoc '' 99 99 Addresses and ports on which kresd should provide DNS over HTTPS/2 (see RFC 8484). 100 - For detailed syntax see ListenStream in man systemd.socket. 100 + For detailed syntax see ListenStream in {manpage}`systemd.socket(5)`. 101 101 ''; 102 102 }; 103 103 instances = mkOption {
+1 -1
nixos/modules/system/boot/systemd/user.nix
··· 46 46 type = types.lines; 47 47 example = "DefaultCPUAccounting=yes"; 48 48 description = lib.mdDoc '' 49 - Extra config options for systemd user instances. See man systemd-user.conf for 49 + Extra config options for systemd user instances. See {manpage}`systemd-user.conf(5)` for 50 50 available options. 51 51 ''; 52 52 };