lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

nixos/doc: convert links to manpages

+17 -23
+1 -1
nixos/modules/image/repart.nix
··· 56 56 }; 57 57 description = '' 58 58 Specify the repart options for a partiton as a structural setting. 59 - See <https://www.freedesktop.org/software/systemd/man/repart.d.html> 59 + See {manpage}`repart.d(5)` 60 60 for all available options. 61 61 ''; 62 62 };
+4 -4
nixos/modules/misc/version.nix
··· 189 189 description = '' 190 190 Image identifier. 191 191 192 - This corresponds to the IMAGE_ID field in os-release. See the 192 + This corresponds to the `IMAGE_ID` field in {manpage}`os-release(5)`. See the 193 193 upstream docs for more details on valid characters for this field: 194 - https://www.freedesktop.org/software/systemd/man/latest/os-release.html#IMAGE_ID= 194 + <https://www.freedesktop.org/software/systemd/man/latest/os-release.html#IMAGE_ID=> 195 195 196 196 You would only want to set this option if you're build NixOS appliance images. 197 197 ''; ··· 203 203 description = '' 204 204 Image version. 205 205 206 - This corresponds to the IMAGE_VERSION field in os-release. See the 206 + This corresponds to the `IMAGE_VERSION` field in {manpage}`os-release(5)`. See the 207 207 upstream docs for more details on valid characters for this field: 208 - https://www.freedesktop.org/software/systemd/man/latest/os-release.html#IMAGE_VERSION= 208 + <https://www.freedesktop.org/software/systemd/man/latest/os-release.html#IMAGE_VERSION=> 209 209 210 210 You would only want to set this option if you're build NixOS appliance images. 211 211 '';
+1 -1
nixos/modules/services/games/mchprs.nix
··· 77 77 description = '' 78 78 Automatically restart the server after 79 79 {option}`services.mchprs.maxRuntime`. 80 - The time span format is described here: 80 + The {manpage}`systemd.time(7)` time span format is described here: 81 81 <https://www.freedesktop.org/software/systemd/man/systemd.time.html#Parsing%20Time%20Spans>. 82 82 If `null`, then the server is not restarted automatically. 83 83 '';
+1 -1
nixos/modules/services/networking/networkd-dispatcher.nix
··· 63 63 default = null; 64 64 description = '' 65 65 List of names of the systemd-networkd operational states which 66 - should trigger the script. See <https://www.freedesktop.org/software/systemd/man/networkctl.html> 66 + should trigger the script. See {manpage}`networkctl(1)` 67 67 for a description of the specific state type. 68 68 ''; 69 69 };
+1 -1
nixos/modules/services/web-servers/static-web-server.nix
··· 18 18 default = "[::]:8787"; 19 19 type = lib.types.str; 20 20 description = '' 21 - The "ListenStream" used in static-web-server.socket. 21 + The {manpage}`systemd.socket(5)` "ListenStream" used in static-web-server.socket. 22 22 This is equivalent to SWS's "host" and "port" options. 23 23 See here for specific syntax: <https://www.freedesktop.org/software/systemd/man/systemd.socket.html#ListenStream=> 24 24 '';
+1 -2
nixos/modules/system/boot/systemd/journald.nix
··· 64 64 65 65 Note that the effective rate limit is multiplied by a factor derived 66 66 from the available free disk space for the journal as described on 67 - [ 68 - journald.conf(5)](https://www.freedesktop.org/software/systemd/man/journald.conf.html). 67 + {manpage}`journald.conf(5)`. 69 68 70 69 Note that the total amount of logs stored is limited by journald settings 71 70 such as `SystemMaxUse`, which defaults to 10% the file system size
+2 -2
nixos/modules/system/boot/systemd/logind.nix
··· 42 42 when the user logs out. If true, the scope unit corresponding 43 43 to the session and all processes inside that scope will be 44 44 terminated. If false, the scope is "abandoned" 45 - (see [systemd.scope(5)](https://www.freedesktop.org/software/systemd/man/systemd.scope.html#)), 45 + (see {manpage}`systemd.scope(5)`), 46 46 and processes are not killed. 47 47 48 - See [logind.conf(5)](https://www.freedesktop.org/software/systemd/man/logind.conf.html#KillUserProcesses=) 48 + See {manpage}`logind.conf(5)` 49 49 for more details. 50 50 ''; 51 51 };
+1 -2
nixos/modules/system/boot/systemd/repart.nix
··· 109 109 description = '' 110 110 Specify partitions as a set of the names of the definition files as the 111 111 key and the partition configuration as its value. The partition 112 - configuration can use all upstream options. See <link 113 - xlink:href="https://www.freedesktop.org/software/systemd/man/repart.d.html"/> 112 + configuration can use all upstream options. See {manpage}`repart.d(5)` 114 113 for all available options. 115 114 ''; 116 115 };
+2 -5
nixos/modules/system/boot/systemd/sysupdate.nix
··· 24 24 If enabled, updates are triggered in regular intervals via a 25 25 `systemd.timer` unit. 26 26 27 - Please see 28 - <https://www.freedesktop.org/software/systemd/man/systemd-sysupdate.html> 29 - for more details. 27 + Please see {manpage}`systemd-sysupdate(8)` for more details. 30 28 ''; 31 29 }; 32 30 ··· 108 106 description = '' 109 107 Specify transfers as a set of the names of the transfer files as the 110 108 key and the configuration as its value. The configuration can use all 111 - upstream options. See 112 - <https://www.freedesktop.org/software/systemd/man/sysupdate.d.html> 109 + upstream options. See {manpage}`sysupdate.d(5)` 113 110 for all available options. 114 111 ''; 115 112 };
+2 -2
nixos/modules/system/boot/systemd/tmpfiles.nix
··· 43 43 44 44 Please see the upstream documentation for the available types and 45 45 more details: 46 - <https://www.freedesktop.org/software/systemd/man/tmpfiles.d> 46 + {manpage}`tmpfiles.d(5)` 47 47 ''; 48 48 }; 49 49 options.mode = mkOption { ··· 102 102 103 103 Please see the upstream documentation for the meaning of this 104 104 parameter in different situations: 105 - <https://www.freedesktop.org/software/systemd/man/tmpfiles.d> 105 + {manpage}`tmpfiles.d(5)` 106 106 ''; 107 107 }; 108 108 }))));
+1 -2
nixos/modules/system/boot/timesyncd.nix
··· 53 53 ''; 54 54 description = '' 55 55 Extra config options for systemd-timesyncd. See 56 - [ 57 - timesyncd.conf(5)](https://www.freedesktop.org/software/systemd/man/timesyncd.conf.html) for available options. 56 + {manpage}`timesyncd.conf(5)` for available options. 58 57 ''; 59 58 }; 60 59 };