nixpkgs/nixos/modules/services/network-filesystems
Silvan Mosberger 1d0fc9729d
nixos/treewide: Fix incorrectly rendered examples
Many options define their example to be a Nix value without using
literalExample. This sometimes gets rendered incorrectly in the manual,
causing confusion like in https://github.com/NixOS/nixpkgs/issues/25516

This fixes it by using literalExample for such options. The list of
option to fix was determined with this expression:

  let
    nixos = import ./nixos { configuration = {}; };
    lib = import ./lib;
    valid = d: {
      # escapeNixIdentifier from https://github.com/NixOS/nixpkgs/pull/82461
      set = lib.all (n: lib.strings.escapeNixIdentifier n == n) (lib.attrNames d) && lib.all (v: valid v) (lib.attrValues d);
      list = lib.all (v: valid v) d;
    }.${builtins.typeOf d} or true;

    optionList = lib.optionAttrSetToDocList nixos.options;

  in map (opt: {
    file = lib.elemAt opt.declarations 0;
    loc = lib.options.showOption opt.loc;
  }) (lib.filter (opt: if opt ? example then ! valid opt.example else false) optionList)

which when evaluated will output all options that use a Nix identifier
that would need escaping as an attribute name.
2020-04-02 07:49:25 +02:00
..
openafs treewide: remove redundant rec 2019-08-28 11:07:32 +00:00
orangefs nixos/orangefs: add modules for server and client 2019-09-25 14:17:08 +02:00
cachefilesd.nix cachefilesd service: init 2016-10-16 19:58:33 +03:00
ceph.nix treewide: use attrs instead of list for types.loaOf options 2020-01-06 10:39:18 -05:00
davfs2.nix treewide: use attrs instead of list for types.loaOf options 2020-01-06 10:39:18 -05:00
diod.nix nixos/diod: fix permissions 2019-02-17 18:26:00 +01:00
drbd.nix treewide: use attrs instead of list for types.loaOf options 2020-01-06 10:39:18 -05:00
glusterfs.nix nixos: remove dependencies on local-fs.target 2019-09-01 19:06:38 +02:00
ipfs.nix nixos: remove dependencies on local-fs.target 2019-09-01 19:06:38 +02:00
kbfs.nix nixos/keybase, nixos/kbfs: update service configs; add redirector 2019-12-23 22:55:06 -08:00
netatalk.nix nixos/treewide: Fix incorrectly rendered examples 2020-04-02 07:49:25 +02:00
nfsd.nix nixos/treewide: Move rename.nix imports to their respective modules 2019-12-10 02:51:19 +01:00
rsyncd.nix nixos/treewide: Fix incorrectly rendered examples 2020-04-02 07:49:25 +02:00
samba.nix nixos/treewide: Fix incorrectly rendered examples 2020-04-02 07:49:25 +02:00
tahoe.nix services.tahoe: Use 1.13-compatible invocations. 2019-02-19 10:23:47 -08:00
u9fs.nix u9fs service: start after network.target 2019-06-30 22:43:08 -04:00
xtreemfs.nix nixos/modules: users.(extraUsers|extraGroup->users|group) 2018-06-30 03:02:58 +02:00
yandex-disk.nix nixos/modules: Remove all usages of types.string 2019-08-31 18:19:00 +02:00