···88{
99 options.programs.corectrl = {
1010 enable = mkEnableOption (lib.mdDoc ''
1111- A tool to overclock amd graphics cards and processors.
1111+ CoreCtrl, a tool to overclock amd graphics cards and processors.
1212 Add your user to the corectrl group to run corectrl without needing to enter your password
1313 '');
14141515 gpuOverclock = {
1616 enable = mkEnableOption (lib.mdDoc ''
1717- true
1717+ GPU overclocking
1818 '');
1919 ppfeaturemask = mkOption {
2020 type = types.str;
+1-1
nixos/modules/hardware/i2c.nix
···1111 enable = mkEnableOption (lib.mdDoc ''
1212 i2c devices support. By default access is granted to users in the "i2c"
1313 group (will be created if non-existent) and any user with a seat, meaning
1414- logged on the computer locally.
1414+ logged on the computer locally
1515 '');
16161717 group = mkOption {
+1-1
nixos/modules/hardware/keyboard/uhk.nix
···1111 non-root access to the firmware of UHK keyboards.
1212 You need it when you want to flash a new firmware on the keyboard.
1313 Access to the keyboard is granted to users in the "input" group.
1414- You may want to install the uhk-agent package.
1414+ You may want to install the uhk-agent package
1515 '');
16161717 };
+1-1
nixos/modules/hardware/keyboard/zsa.nix
···1111 udev rules for keyboards from ZSA like the ErgoDox EZ, Planck EZ and Moonlander Mark I.
1212 You need it when you want to flash a new configuration on the keyboard
1313 or use their live training in the browser.
1414- You may want to install the wally-cli package.
1414+ You may want to install the wally-cli package
1515 '');
1616 };
1717
···99 {
1010 options.hardware.tuxedo-keyboard = {
1111 enable = mkEnableOption (lib.mdDoc ''
1212- Enables the tuxedo-keyboard driver.
1212+ the tuxedo-keyboard driver.
13131414 To configure the driver, pass the options to the {option}`boot.kernelParams` configuration.
1515 There are several parameters you can change. It's best to check at the source code description which options are supported.
+13-13
nixos/modules/hardware/video/nvidia.nix
···2424 options = {
2525 hardware.nvidia = {
2626 datacenter.enable = lib.mkEnableOption (lib.mdDoc ''
2727- Data Center drivers for NVIDIA cards on a NVLink topology.
2727+ Data Center drivers for NVIDIA cards on a NVLink topology
2828 '');
2929 datacenter.settings = lib.mkOption {
3030 type = settingsFormat.type;
···79798080 powerManagement.enable = lib.mkEnableOption (lib.mdDoc ''
8181 experimental power management through systemd. For more information, see
8282- the NVIDIA docs, on Chapter 21. Configuring Power Management Support.
8282+ the NVIDIA docs, on Chapter 21. Configuring Power Management Support
8383 '');
84848585 powerManagement.finegrained = lib.mkEnableOption (lib.mdDoc ''
8686 experimental power management of PRIME offload. For more information, see
8787- the NVIDIA docs, on Chapter 22. PCI-Express Runtime D3 (RTD3) Power Management.
8787+ the NVIDIA docs, on Chapter 22. PCI-Express Runtime D3 (RTD3) Power Management
8888 '');
89899090 dynamicBoost.enable = lib.mkEnableOption (lib.mdDoc ''
9191 dynamic Boost balances power between the CPU and the GPU for improved
9292 performance on supported laptops using the nvidia-powerd daemon. For more
9393- information, see the NVIDIA docs, on Chapter 23. Dynamic Boost on Linux.
9393+ information, see the NVIDIA docs, on Chapter 23. Dynamic Boost on Linux
9494 '');
95959696 modesetting.enable = lib.mkEnableOption (lib.mdDoc ''
···9999 Enabling this fixes screen tearing when using Optimus via PRIME (see
100100 {option}`hardware.nvidia.prime.sync.enable`. This is not enabled
101101 by default because it is not officially supported by NVIDIA and would not
102102- work with SLI.
102102+ work with SLI
103103 '');
104104105105 prime.nvidiaBusId = lib.mkOption {
···153153154154 Note that this configuration will only be successful when a display manager
155155 for which the {option}`services.xserver.displayManager.setupCommands`
156156- option is supported is used.
156156+ option is supported is used
157157 '');
158158159159 prime.allowExternalGpu = lib.mkEnableOption (lib.mdDoc ''
160160- configuring X to allow external NVIDIA GPUs when using Prime [Reverse] sync optimus.
160160+ configuring X to allow external NVIDIA GPUs when using Prime [Reverse] sync optimus
161161 '');
162162163163 prime.offload.enable = lib.mkEnableOption (lib.mdDoc ''
···166166 If this is enabled, then the bus IDs of the NVIDIA and Intel/AMD GPUs have to
167167 be specified ({option}`hardware.nvidia.prime.nvidiaBusId` and
168168 {option}`hardware.nvidia.prime.intelBusId` or
169169- {option}`hardware.nvidia.prime.amdgpuBusId`).
169169+ {option}`hardware.nvidia.prime.amdgpuBusId`)
170170 '');
171171172172 prime.offload.enableOffloadCmd = lib.mkEnableOption (lib.mdDoc ''
···174174 for offloading programs to an nvidia device. To work, should have also enabled
175175 {option}`hardware.nvidia.prime.offload.enable` or {option}`hardware.nvidia.prime.reverseSync.enable`.
176176177177- Example usage `nvidia-offload sauerbraten_client`.
177177+ Example usage `nvidia-offload sauerbraten_client`
178178 '');
179179180180 prime.reverseSync.enable = lib.mkEnableOption (lib.mdDoc ''
···202202203203 Note that this configuration will only be successful when a display manager
204204 for which the {option}`services.xserver.displayManager.setupCommands`
205205- option is supported is used.
205205+ option is supported is used
206206 '');
207207208208 nvidiaSettings =
209209 (lib.mkEnableOption (lib.mdDoc ''
210210- nvidia-settings, NVIDIA's GUI configuration tool.
210210+ nvidia-settings, NVIDIA's GUI configuration tool
211211 ''))
212212 // {default = true;};
213213214214 nvidiaPersistenced = lib.mkEnableOption (lib.mdDoc ''
215215 nvidia-persistenced a update for NVIDIA GPU headless mode, i.e.
216216- It ensures all GPUs stay awake even during headless mode.
216216+ It ensures all GPUs stay awake even during headless mode
217217 '');
218218219219 forceFullCompositionPipeline = lib.mkEnableOption (lib.mdDoc ''
220220 forcefully the full composition pipeline.
221221 This sometimes fixes screen tearing issues.
222222 This has been reported to reduce the performance of some OpenGL applications and may produce issues in WebGL.
223223- It also drastically increases the time the driver needs to clock down after load.
223223+ It also drastically increases the time the driver needs to clock down after load
224224 '');
225225226226 package = lib.mkOption {
···88 options = {
99 programs.calls = {
1010 enable = mkEnableOption (lib.mdDoc ''
1111- Whether to enable GNOME calls: a phone dialer and call handler.
1111+ GNOME calls: a phone dialer and call handler
1212 '');
1313 };
1414 };
+1-1
nixos/modules/programs/cnping.nix
···88{
99 options = {
1010 programs.cnping = {
1111- enable = mkEnableOption (lib.mdDoc "Whether to install a setcap wrapper for cnping");
1111+ enable = mkEnableOption (lib.mdDoc "a setcap wrapper for cnping");
1212 };
1313 };
1414
+1-1
nixos/modules/programs/direnv.nix
···1111 enable = lib.mkEnableOption (lib.mdDoc ''
1212 direnv integration. Takes care of both installation and
1313 setting up the sourcing of the shell. Additionally enables nix-direnv
1414- integration. Note that you need to logout and login for this change to apply.
1414+ integration. Note that you need to logout and login for this change to apply
1515 '');
16161717 package = lib.mkPackageOptionMD pkgs "direnv" {};
+2-2
nixos/modules/programs/feedbackd.nix
···88 options = {
99 programs.feedbackd = {
1010 enable = mkEnableOption (lib.mdDoc ''
1111- Whether to enable the feedbackd D-BUS service and udev rules.
1111+ the feedbackd D-BUS service and udev rules.
12121313- Your user needs to be in the `feedbackd` group to trigger effects.
1313+ Your user needs to be in the `feedbackd` group to trigger effects
1414 '');
1515 package = mkOption {
1616 description = lib.mdDoc ''
+1-1
nixos/modules/programs/kdeconnect.nix
···99 1714 to 1764 as they are needed for it to function properly.
1010 You can use the {option}`package` to use
1111 `gnomeExtensions.gsconnect` as an alternative
1212- implementation if you use Gnome.
1212+ implementation if you use Gnome
1313 '');
1414 package = mkOption {
1515 default = pkgs.plasma5Packages.kdeconnect-kde;
+1-1
nixos/modules/programs/wayland/wayfire.nix
···66 meta.maintainers = with lib.maintainers; [ rewine ];
7788 options.programs.wayfire = {
99- enable = lib.mkEnableOption (lib.mdDoc "Wayfire, a wayland compositor based on wlroots.");
99+ enable = lib.mkEnableOption (lib.mdDoc "Wayfire, a wayland compositor based on wlroots");
10101111 package = lib.mkPackageOptionMD pkgs "wayfire" { };
1212
+10-10
nixos/modules/services/backup/znapzend.nix
···359359 };
360360361361 features.oracleMode = mkEnableOption (lib.mdDoc ''
362362- Destroy snapshots one by one instead of using one long argument list.
362362+ destroying snapshots one by one instead of using one long argument list.
363363 If source and destination are out of sync for a long time, you may have
364364 so many snapshots to destroy that the argument gets is too long and the
365365- command fails.
365365+ command fails
366366 '');
367367 features.recvu = mkEnableOption (lib.mdDoc ''
368368 recvu feature which uses `-u` on the receiving end to keep the destination
369369- filesystem unmounted.
369369+ filesystem unmounted
370370 '');
371371 features.compressed = mkEnableOption (lib.mdDoc ''
372372 compressed feature which adds the options `-Lce` to
···377377 support and -e is for embedded data support. see
378378 {manpage}`znapzend(1)`
379379 and {manpage}`zfs(8)`
380380- for more info.
380380+ for more info
381381 '');
382382 features.sendRaw = mkEnableOption (lib.mdDoc ''
383383 sendRaw feature which adds the options `-w` to the
···386386 backup that can't be read without the encryption key/passphrase, useful
387387 when the remote isn't fully trusted or not physically secure. This
388388 option must be used consistently, raw incrementals cannot be based on
389389- non-raw snapshots and vice versa.
389389+ non-raw snapshots and vice versa
390390 '');
391391 features.skipIntermediates = mkEnableOption (lib.mdDoc ''
392392- Enable the skipIntermediates feature to send a single increment
392392+ the skipIntermediates feature to send a single increment
393393 between latest common snapshot and the newly made one. It may skip
394394 several source snaps if the destination was offline for some time, and
395395 it should skip snapshots not managed by znapzend. Normally for online
396396 destinations, the new snapshot is sent as soon as it is created on the
397397- source, so there are no automatic increments to skip.
397397+ source, so there are no automatic increments to skip
398398 '');
399399 features.lowmemRecurse = mkEnableOption (lib.mdDoc ''
400400 use lowmemRecurse on systems where you have too many datasets, so a
401401 recursive listing of attributes to find backup plans exhausts the
402402 memory available to {command}`znapzend`: instead, go the slower
403403 way to first list all impacted dataset names, and then query their
404404- configs one by one.
404404+ configs one by one
405405 '');
406406 features.zfsGetType = mkEnableOption (lib.mdDoc ''
407407- use zfsGetType if your {command}`zfs get` supports a
407407+ using zfsGetType if your {command}`zfs get` supports a
408408 `-t` argument for filtering by dataset type at all AND
409409 lists properties for snapshots by default when recursing, so that there
410410 is too much data to process while searching for backup plans.
···412412 `--recursive` search for backup plans can literally
413413 differ by hundreds of times (depending on the amount of snapshots in
414414 that dataset tree... and a decent backup plan will ensure you have a lot
415415- of those), so you would benefit from requesting this feature.
415415+ of those), so you would benefit from requesting this feature
416416 '');
417417 };
418418 };
+1-1
nixos/modules/services/databases/cassandra.nix
···122122 options.services.cassandra = {
123123124124 enable = mkEnableOption (lib.mdDoc ''
125125- Apache Cassandra – Scalable and highly available database.
125125+ Apache Cassandra – Scalable and highly available database
126126 '');
127127128128 clusterName = mkOption {
+1-1
nixos/modules/services/databases/ferretdb.nix
···11111212 options = {
1313 services.ferretdb = {
1414- enable = mkEnableOption "FerretDB, an Open Source MongoDB alternative.";
1414+ enable = mkEnableOption "FerretDB, an Open Source MongoDB alternative";
15151616 package = mkOption {
1717 type = types.package;
+1-1
nixos/modules/services/databases/redis.nix
···7575 Note that the NixOS module for Redis disables kernel support
7676 for Transparent Huge Pages (THP),
7777 because this features causes major performance problems for Redis,
7878- e.g. (https://redis.io/topics/latency).
7878+ e.g. (https://redis.io/topics/latency)
7979 '');
80808181 user = mkOption {
+1-1
nixos/modules/services/databases/surrealdb.nix
···8899 options = {
1010 services.surrealdb = {
1111- enable = mkEnableOption (lib.mdDoc "A scalable, distributed, collaborative, document-graph database, for the realtime web ");
1111+ enable = mkEnableOption (lib.mdDoc "SurrealDB, a scalable, distributed, collaborative, document-graph database, for the realtime web");
12121313 package = mkOption {
1414 default = pkgs.surrealdb;
···1515 services.deepin.dde-api = {
16161717 enable = mkEnableOption (lib.mdDoc ''
1818- Provides some dbus interfaces that is used for screen zone detecting,
1919- thumbnail generating, and sound playing in Deepin Desktop Environment.
1818+ some dbus interfaces that is used for screen zone detecting,
1919+ thumbnail generating, and sound playing in Deepin Desktop Environment
2020 '');
21212222 };
···24242525 options = {
2626 services.gnome.gnome-browser-connector.enable = mkEnableOption (mdDoc ''
2727- Native host connector for the GNOME Shell browser extension, a DBus service
2828- allowing to install GNOME Shell extensions from a web browser.
2727+ native host connector for the GNOME Shell browser extension, a DBus service
2828+ allowing to install GNOME Shell extensions from a web browser
2929 '');
3030 };
3131
···99{
1010 options = {
1111 hardware.tuxedo-rs = {
1212- enable = mkEnableOption (lib.mdDoc "Rust utilities for interacting with hardware from TUXEDO Computers.");
1212+ enable = mkEnableOption (lib.mdDoc "Rust utilities for interacting with hardware from TUXEDO Computers");
13131414- tailor-gui.enable = mkEnableOption (lib.mdDoc "Alternative to TUXEDO Control Center, written in Rust.");
1414+ tailor-gui.enable = mkEnableOption (lib.mdDoc "tailor-gui, an alternative to TUXEDO Control Center, written in Rust");
1515 };
1616 };
1717
+1-1
nixos/modules/services/mail/dovecot.nix
···302302303303 enablePAM = mkEnableOption (lib.mdDoc "creating a own Dovecot PAM service and configure PAM user logins") // { default = true; };
304304305305- enableDHE = mkEnableOption (lib.mdDoc "enable ssl_dh and generation of primes for the key exchange") // { default = true; };
305305+ enableDHE = mkEnableOption (lib.mdDoc "ssl_dh and generation of primes for the key exchange") // { default = true; };
306306307307 sieveScripts = mkOption {
308308 type = types.attrsOf types.path;
+1-1
nixos/modules/services/mail/mailman.nix
···260260 };
261261262262 serve = {
263263- enable = mkEnableOption (lib.mdDoc "Automatic nginx and uwsgi setup for mailman-web");
263263+ enable = mkEnableOption (lib.mdDoc "automatic nginx and uwsgi setup for mailman-web");
264264265265 virtualRoot = mkOption {
266266 default = "/";
+2-2
nixos/modules/services/matrix/mjolnir.nix
···9696 type = types.submodule {
9797 options = {
9898 enable = mkEnableOption (lib.mdDoc ''
9999- If true, accessToken is ignored and the username/password below will be
100100- used instead. The access token of the bot will be stored in the dataPath.
9999+ ignoring the accessToken. If true, accessToken is ignored and the username/password below will be
100100+ used instead. The access token of the bot will be stored in the dataPath
101101 '');
102102103103 username = mkOption {
+2-2
nixos/modules/services/misc/klipper.nix
···111111 (submodule {
112112 options = {
113113 enable = mkEnableOption (lib.mdDoc ''
114114- building of firmware for manual flashing.
114114+ building of firmware for manual flashing
115115 '');
116116 enableKlipperFlash = mkEnableOption (lib.mdDoc ''
117117 flashings scripts for firmware. This will add `klipper-flash-$mcu` scripts to your environment which can be called to flash the firmware.
118118- Please check the configs at [klipper](https://github.com/Klipper3d/klipper/tree/master/config) whether your board supports flashing via `make flash`.
118118+ Please check the configs at [klipper](https://github.com/Klipper3d/klipper/tree/master/config) whether your board supports flashing via `make flash`
119119 '');
120120 serial = mkOption {
121121 type = types.nullOr path;
+2-2
nixos/modules/services/misc/packagekit.nix
···40404141 options.services.packagekit = {
4242 enable = mkEnableOption (lib.mdDoc ''
4343- PackageKit provides a cross-platform D-Bus abstraction layer for
4343+ PackageKit, a cross-platform D-Bus abstraction layer for
4444 installing software. Software utilizing PackageKit can install
4545- software regardless of the package manager.
4545+ software regardless of the package manager
4646 '');
47474848 settings = mkOption {
+1-1
nixos/modules/services/misc/rshim.nix
···1212in
1313{
1414 options.services.rshim = {
1515- enable = lib.mkEnableOption (lib.mdDoc "User-space rshim driver for the BlueField SoC");
1515+ enable = lib.mkEnableOption (lib.mdDoc "user-space rshim driver for the BlueField SoC");
16161717 package = lib.mkPackageOptionMD pkgs "rshim-user-space" { };
1818
+1-1
nixos/modules/services/misc/sourcehut/default.nix
···438438 };
439439440440 options."lists.sr.ht" = commonServiceSettings "lists" // {
441441- allow-new-lists = mkEnableOption (lib.mdDoc "Allow creation of new lists");
441441+ allow-new-lists = mkEnableOption (lib.mdDoc "creation of new lists");
442442 notify-from = mkOption {
443443 description = lib.mdDoc "Outgoing email for notifications generated by users.";
444444 type = types.str;
+1-1
nixos/modules/services/misc/tp-auto-kbbl.nix
···991010 options = {
1111 services.tp-auto-kbbl = {
1212- enable = mkEnableOption (lib.mdDoc "Auto toggle keyboard back-lighting on Thinkpads (and maybe other laptops) for Linux");
1212+ enable = mkEnableOption (lib.mdDoc "auto toggle keyboard back-lighting on Thinkpads (and maybe other laptops) for Linux");
13131414 package = mkOption {
1515 type = types.package;
+2-2
nixos/modules/services/misc/zoneminder.nix
···6767 options = {
6868 services.zoneminder = with lib; {
6969 enable = lib.mkEnableOption (lib.mdDoc ''
7070- ZoneMinder
7070+ ZoneMinder.
71717272 If you intend to run the database locally, you should set
7373 `config.services.zoneminder.database.createLocally` to true. Otherwise,
7474 when set to `false` (the default), you will have to create the database
7575 and database user as well as populate the database yourself.
7676 Additionally, you will need to run `zmupdate.pl` yourself when
7777- upgrading to a newer version.
7777+ upgrading to a newer version
7878 '');
79798080 webserver = mkOption {
···11111212 # the upstream package runs as root, but doesn't seem to be strictly
1313 # necessary for basic functionality
1414- runAsRoot = mkEnableOption (lib.mdDoc "Whether to run as root");
1414+ runAsRoot = mkEnableOption (lib.mdDoc "running as root");
15151616 autoRetirement = mkEnableOption (lib.mdDoc ''
1717- Whether to automatically retire the host upon OS shutdown.
1717+ retiring the host upon OS shutdown
1818 '');
19192020 apiKeyFile = mkOption {
···5959 };
60606161 options.diagnostic =
6262- mkEnableOption (lib.mdDoc "Collect memory usage for the agent itself");
6262+ mkEnableOption (lib.mdDoc "collecting memory usage for the agent itself");
6363 };
6464 };
6565 };
···177177178178 backup = {
179179 enable = mkEnableOption (lib.mdDoc ''
180180- Backup server role. When using OpenAFS built-in buserver, use in conjunction with the
180180+ the backup server role. When using OpenAFS built-in buserver, use in conjunction with the
181181 `database` role to maintain the Backup
182182 Database. Normally only used in conjunction with tape storage
183183 or IBM's Tivoli Storage Manager.
184184185185 For a modern backup server, enable this role and see
186186- {option}`enableFabs`.
186186+ {option}`enableFabs`
187187 '');
188188189189 enableFabs = mkEnableOption (lib.mdDoc ''
+1-1
nixos/modules/services/networking/create_ap.nix
···88in {
99 options = {
1010 services.create_ap = {
1111- enable = mkEnableOption (lib.mdDoc "setup wifi hotspots using create_ap");
1111+ enable = mkEnableOption (lib.mdDoc "setting up wifi hotspots using create_ap");
1212 settings = mkOption {
1313 type = with types; attrsOf (oneOf [ int bool str ]);
1414 default = {};
+3-3
nixos/modules/services/networking/dae.nix
···1414 options = {
1515 services.dae = with lib;{
1616 enable = mkEnableOption
1717- (mdDoc "A Linux high-performance transparent proxy solution based on eBPF");
1717+ (mdDoc "dae, a Linux high-performance transparent proxy solution based on eBPF");
18181919 package = mkPackageOptionMD pkgs "dae" { };
2020···4646 openFirewall = mkOption {
4747 type = with types; submodule {
4848 options = {
4949- enable = mkEnableOption "enable";
4949+ enable = mkEnableOption (mdDoc "opening {option}`port` in the firewall");
5050 port = mkOption {
5151 type = types.port;
5252 description = ''
···9191 };
92929393 disableTxChecksumIpGeneric =
9494- mkEnableOption (mdDoc "See <https://github.com/daeuniverse/dae/issues/43>");
9494+ mkEnableOption "" // { description = mdDoc "See <https://github.com/daeuniverse/dae/issues/43>"; };
95959696 };
9797 };
+4-4
nixos/modules/services/networking/deconz.nix
···5454 description = "TCP port for the WebSocket.";
5555 };
56565757- openFirewall = lib.mkEnableOption "open up the service ports in the firewall";
5757+ openFirewall = lib.mkEnableOption "opening up the service ports in the firewall";
58585959- allowRebootSystem = lib.mkEnableOption "allow rebooting the system";
5959+ allowRebootSystem = lib.mkEnableOption "rebooting the system";
60606161- allowRestartService = lib.mkEnableOption "allow killing/restarting processes";
6161+ allowRestartService = lib.mkEnableOption "killing/restarting processes";
62626363- allowSetSystemTime = lib.mkEnableOption "allow setting the system time";
6363+ allowSetSystemTime = lib.mkEnableOption "setting the system time";
64646565 extraArgs = lib.mkOption {
6666 type = lib.types.listOf lib.types.str;
+1-1
nixos/modules/services/networking/go-neb.nix
···99 configFile = settingsFormat.generate "config.yaml" cfg.config;
1010in {
1111 options.services.go-neb = {
1212- enable = mkEnableOption (lib.mdDoc "Extensible matrix bot written in Go");
1212+ enable = mkEnableOption (lib.mdDoc "an extensible matrix bot written in Go");
13131414 bindAddress = mkOption {
1515 type = types.str;
+2-2
nixos/modules/services/networking/hostapd.nix
···116116 options = {
117117 services.hostapd = {
118118 enable = mkEnableOption (mdDoc ''
119119- Whether to enable hostapd. hostapd is a user space daemon for access point and
119119+ hostapd, a user space daemon for access point and
120120 authentication servers. It implements IEEE 802.11 access point management,
121121 IEEE 802.1X/WPA/WPA2/EAP Authenticators, RADIUS client, EAP server, and RADIUS
122122- authentication server.
122122+ authentication server
123123 '');
124124125125 package = mkPackageOption pkgs "hostapd" {};
···272272 };
273273274274 faxcron.enable.spoolInit = mkEnableOption (lib.mdDoc ''
275275- Purge old files from the spooling area with
275275+ purging old files from the spooling area with
276276 {file}`faxcron`
277277- each time the spooling area is initialized.
277277+ each time the spooling area is initialized
278278 '');
279279 faxcron.enable.frequency = mkOption {
280280 type = nullOr nonEmptyStr;
281281 default = null;
282282 example = "daily";
283283 description = lib.mdDoc ''
284284- Purge old files from the spooling area with
284284+ purging old files from the spooling area with
285285 {file}`faxcron` with the given frequency
286286- (see systemd.time(7)).
286286+ (see systemd.time(7))
287287 '';
288288 };
289289 faxcron.infoDays = mkOption {
+4-4
nixos/modules/services/networking/i2pd.nix
···265265 '';
266266 };
267267268268- logCLFTime = mkEnableOption (lib.mdDoc "Full CLF-formatted date and time to log");
268268+ logCLFTime = mkEnableOption (lib.mdDoc "full CLF-formatted date and time to log");
269269270270 address = mkOption {
271271 type = with types; nullOr str;
···456456 '';
457457 };
458458459459- trust.enable = mkEnableOption (lib.mdDoc "Explicit trust options");
459459+ trust.enable = mkEnableOption (lib.mdDoc "explicit trust options");
460460461461 trust.family = mkOption {
462462 type = with types; nullOr str;
···474474 '';
475475 };
476476477477- trust.hidden = mkEnableOption (lib.mdDoc "Router concealment");
477477+ trust.hidden = mkEnableOption (lib.mdDoc "router concealment");
478478479479 websocket = mkEndpointOpt "websockets" "127.0.0.1" 7666;
480480···552552553553 proto.http = (mkEndpointOpt "http" "127.0.0.1" 7070) // {
554554555555- auth = mkEnableOption (lib.mdDoc "Webconsole authentication");
555555+ auth = mkEnableOption (lib.mdDoc "webconsole authentication");
556556557557 user = mkOption {
558558 type = types.str;
···77 enable = mkEnableOption (lib.mdDoc "the openiscsi iscsi daemon");
88 enableAutoLoginOut = mkEnableOption (lib.mdDoc ''
99 automatic login and logout of all automatic targets.
1010- You probably do not want this.
1010+ You probably do not want this
1111 '');
1212 discoverPortal = mkOption {
1313 type = nullOr str;
···88{
99 options = {
1010 services.snowflake-proxy = {
1111- enable = mkEnableOption (lib.mdDoc "System to defeat internet censorship");
1111+ enable = mkEnableOption (lib.mdDoc "snowflake-proxy, a system to defeat internet censorship");
12121313 broker = mkOption {
1414 description = lib.mdDoc "Broker URL (default \"https://snowflake-broker.torproject.net/\")";
+2-2
nixos/modules/services/networking/yggdrasil.nix
···116116 };
117117118118 persistentKeys = mkEnableOption (lib.mdDoc ''
119119- If enabled then keys will be generated once and Yggdrasil
119119+ persistent keys. If enabled then keys will be generated once and Yggdrasil
120120 will retain the same IPv6 address when the service is
121121- restarted. Keys are stored at ${keysPath}.
121121+ restarted. Keys are stored at ${keysPath}
122122 '');
123123124124 extraArgs = mkOption {
+1-1
nixos/modules/services/system/earlyoom.nix
···1111in
1212{
1313 options.services.earlyoom = {
1414- enable = mkEnableOption (lib.mdDoc "Early out of memory killing");
1414+ enable = mkEnableOption (lib.mdDoc "early out of memory killing");
15151616 freeMemThreshold = mkOption {
1717 type = types.ints.between 1 100;
···13131414 WARNING: enabling this option (while convenient) should *not* be done on a
1515 machine where you do not trust the other users as it allows any other
1616- local user to DoS your session by spamming notifications.
1616+ local user to DoS your session by spamming notifications
1717 '');
1818 };
1919
···4040 };
41414242 allowVideoAccess = lib.mkEnableOption (lib.mdDoc ''
4343- Enable access to video devices like cameras on the system.
4343+ access to video devices like cameras on the system
4444 '');
4545 };
4646 };
···7788 enable = mkEnableOption (lib.mdDoc "hledger-web service");
991010- serveApi = mkEnableOption (lib.mdDoc "Serve only the JSON web API, without the web UI");
1010+ serveApi = mkEnableOption (lib.mdDoc "serving only the JSON web API, without the web UI");
11111212 host = mkOption {
1313 type = types.str;
+2-2
nixos/modules/services/web-apps/isso.nix
···1212 options = {
1313 services.isso = {
1414 enable = mkEnableOption (lib.mdDoc ''
1515- A commenting server similar to Disqus.
1515+ isso, a commenting server similar to Disqus.
16161717 Note: The application's author suppose to run isso behind a reverse proxy.
1818 The embedded solution offered by NixOS is also only suitable for small installations
1919- below 20 requests per second.
1919+ below 20 requests per second
2020 '');
21212222 settings = mkOption {
+2-2
nixos/modules/services/web-apps/jitsi-meet.nix
···105105 type = bool;
106106 default = true;
107107 description = lib.mdDoc ''
108108- Whether to enable Jitsi Videobridge instance and configure it to connect to Prosody.
108108+ Jitsi Videobridge instance and configure it to connect to Prosody.
109109110110- Additional configuration is possible with {option}`services.jitsi-videobridge`.
110110+ Additional configuration is possible with {option}`services.jitsi-videobridge`
111111 '';
112112 };
113113
···88 options = {
99 services.meme-bingo-web = {
1010 enable = mkEnableOption (mdDoc ''
1111- A web app for the meme bingo, rendered entirely on the web server and made interactive with forms.
1111+ a web app for the meme bingo, rendered entirely on the web server and made interactive with forms.
12121313- Note: The application's author suppose to run meme-bingo-web behind a reverse proxy for SSL and HTTP/3.
1313+ Note: The application's author suppose to run meme-bingo-web behind a reverse proxy for SSL and HTTP/3
1414 '');
15151616 package = mkOption {
···1616 options.services.keter = {
1717 enable = lib.mkEnableOption (lib.mdDoc ''keter, a web app deployment manager.
1818Note that this module only support loading of webapps:
1919-Keep an old app running and swap the ports when the new one is booted.
1919+Keep an old app running and swap the ports when the new one is booted
2020'');
21212222 root = lib.mkOption {
···7979 // { default = true; internal = true; };
8080 enableValidation = lib.mkEnableOption (lib.mdDoc ''the validation of bootspec documents for each build.
8181 This will introduce Go in the build-time closure as we are relying on [Cuelang](https://cuelang.org/) for schema validation.
8282- Enable this option if you want to ascertain that your documents are correct.
8282+ Enable this option if you want to ascertain that your documents are correct
8383 ''
8484 );
8585
+1-1
nixos/modules/system/boot/grow-partition.nix
···1212 ];
13131414 options = {
1515- boot.growPartition = mkEnableOption (lib.mdDoc "grow the root partition on boot");
1515+ boot.growPartition = mkEnableOption (lib.mdDoc "growing the root partition on boot");
1616 };
17171818 config = mkIf config.boot.growPartition {