···77 gnu = mkOption {
88 type = types.bool;
99 default = false;
1010- description =
1111- '' When enabled, GNU software is chosen by default whenever a there is
1212- a choice between GNU and non-GNU software (e.g., GNU lsh
1313- vs. OpenSSH).
1414- '';
1010+ description = ''
1111+ When enabled, GNU software is chosen by default whenever a there is
1212+ a choice between GNU and non-GNU software (e.g., GNU lsh
1313+ vs. OpenSSH).
1414+ '';
1515 };
1616 };
1717
+1-1
nixos/modules/config/i18n.nix
···4646 default = with pkgs.kbdKeymaps; [ dvp neo ];
4747 defaultText = ''with pkgs.kbdKeymaps; [ dvp neo ]'';
4848 description = ''
4949- List of additional packages that provide console fonts, keymaps and
4949+ List of additional packages that provide console fonts, keymaps and
5050 other resources.
5151 '';
5252 };
+8-8
nixos/modules/programs/mosh.nix
···99in
1010{
1111 options.programs.mosh = {
1212- enable = mkOption {
1313- description = ''
1414- Whether to enable mosh. Note, this will open ports in your firewall!
1515- '';
1616- default = false;
1717- example = true;
1818- type = lib.types.bool;
1919- };
1212+ enable = mkOption {
1313+ description = ''
1414+ Whether to enable mosh. Note, this will open ports in your firewall!
1515+ '';
1616+ default = false;
1717+ example = true;
1818+ type = lib.types.bool;
1919+ };
2020 };
21212222 config = mkIf cfg.enable {
+13-8
nixos/modules/services/networking/wireguard.nix
···3131 default = null;
3232 example = "rVXs/Ni9tu3oDBLS4hOyAUAa1qTWVA3loR8eL20os3I=";
3333 type = with types; nullOr str;
3434- description = ''base64 preshared key generated by wg genpsk. Optional,
3535- and may be omitted. This option adds an additional layer of
3636- symmetric-key cryptography to be mixed into the already existing
3737- public-key cryptography, for post-quantum resistance.'';
3434+ description = ''
3535+ base64 preshared key generated by wg genpsk. Optional,
3636+ and may be omitted. This option adds an additional layer of
3737+ symmetric-key cryptography to be mixed into the already existing
3838+ public-key cryptography, for post-quantum resistance.
3939+ '';
3840 };
39414042 listenPort = mkOption {
4143 default = null;
4244 type = with types; nullOr int;
4345 example = 51820;
4444- description = ''16-bit port for listening. Optional; if not specified,
4545- automatically generated based on interface name.'';
4646+ description = ''
4747+ 16-bit port for listening. Optional; if not specified,
4848+ automatically generated based on interface name.
4949+ '';
4650 };
47514852 preSetup = mkOption {
···5155 ''];
5256 default = [];
5357 type = with types; listOf str;
5454- description = ''A list of commands called at the start of the interface
5555- setup.'';
5858+ description = ''
5959+ A list of commands called at the start of the interface setup.
6060+ '';
5661 };
57625863 postSetup = mkOption {