Update `etc` example to not use a real config file

A user noticed the example for `hosts`, took the `mode` permissions literally, and ended up with surprising behavior on their system. Updating the documentation to not reference a real config file which might have real permissions requirements.

+1 -1
+1 -1
nixos/modules/system/etc/etc.nix
··· 36 36 type = types.loaOf types.optionSet; 37 37 default = {}; 38 38 example = literalExample '' 39 - { hosts = 39 + { example-configuration-file = 40 40 { source = "/nix/store/.../etc/dir/file.conf.example"; 41 41 mode = "0440"; 42 42 };