Manual example¶
Functions¶
- toString¶
Convert the given value to a string
nix> toString 42 "42"
NixOS-like module options¶
See also
Example of ref links:
And failing examples:
services.nonexistent.enable
missingFunction
Service Foo¶
- services.foo.enable¶
Enable the Foo service
false
true
- services.foo.settings submodule¶
Settings for Foo
{}
{ baz = [ "one" ]; }
- services.foo.settings.baz list of (string) [read-only]¶
List of config to handle
[]
[ "one" "two" "three" ]
Service Bar¶
Python¶
Hello