2566c1
# The containers configuration file specifies all of the available configuration
2566c1
# command-line options/flags for container engine tools like Podman & Buildah,
2566c1
# but in a TOML format that can be easily modified and versioned.
2566c1
2566c1
# Please refer to containers.conf(5) for details of all configuration options.
2566c1
# Not all container engines implement all of the options.
2566c1
# All of the options have hard coded defaults and these options will override
2566c1
# the built in defaults. Users can then override these options via the command
2566c1
# line. Container engines will read containers.conf files in up to three
2566c1
# locations in the following order:
2566c1
#  1. /usr/share/containers/containers.conf
2566c1
#  2. /etc/containers/containers.conf
2566c1
#  3. $HOME/.config/containers/containers.conf (Rootless containers ONLY)
2566c1
#  Items specified in the latter containers.conf, if they exist, override the
2566c1
# previous containers.conf settings, or the default settings.
2566c1
2566c1
[containers]
2566c1
2566c1
# List of annotation. Specified as
2566c1
# "key = value"
2566c1
# If it is empty or commented out, no annotations will be added
2566c1
#
2566c1
#annotations = []
2566c1
2566c1
# Used to change the name of the default AppArmor profile of container engine.
2566c1
#
2566c1
#apparmor_profile = "container-default"
2566c1
2566c1
# Default way to to create a cgroup namespace for the container
2566c1
# Options are:
2566c1
# `private` Create private Cgroup Namespace for the container.
2566c1
# `host`    Share host Cgroup Namespace with the container.
2566c1
#
2566c1
#cgroupns = "private"
2566c1
2566c1
# Control container cgroup configuration
2566c1
# Determines  whether  the  container will create CGroups.
2566c1
# Options are:
2566c1
# `enabled`   Enable cgroup support within container
2566c1
# `disabled`  Disable cgroup support, will inherit cgroups from parent
2566c1
# `no-conmon` Do not create a cgroup dedicated to conmon.
2566c1
#
2566c1
#cgroups = "enabled"
2566c1
2566c1
# List of default capabilities for containers. If it is empty or commented out,
2566c1
# the default capabilities defined in the container engine will be added.
2566c1
#
2566c1
default_capabilities = [
2566c1
    "NET_RAW",
2566c1
  "CHOWN",
2566c1
  "DAC_OVERRIDE",
2566c1
  "FOWNER",
2566c1
  "FSETID",
2566c1
  "KILL",
2566c1
  "NET_BIND_SERVICE",
2566c1
  "SETFCAP",
2566c1
  "SETGID",
2566c1
  "SETPCAP",
2566c1
  "SETUID",
2566c1
  "SYS_CHROOT"
2566c1
]
2566c1
2566c1
# A list of sysctls to be set in containers by default,
2566c1
# specified as "name=value",
2566c1
# for example:"net.ipv4.ping_group_range=0 0".
2566c1
#
2566c1
default_sysctls = [
2566c1
  "net.ipv4.ping_group_range=0 0",
2566c1
]
2566c1
2566c1
# A list of ulimits to be set in containers by default, specified as
2566c1
# "<ulimit name>=<soft limit>:<hard limit>", for example:
2566c1
# "nofile=1024:2048"
2566c1
# See setrlimit(2) for a list of resource names.
2566c1
# Any limit not specified here will be inherited from the process launching the
2566c1
# container engine.
2566c1
# Ulimits has limits for non privileged container engines.
2566c1
#
2566c1
#default_ulimits = [
2566c1
#  "nofile=1280:2560",
2566c1
#]
2566c1
2566c1
# List of devices. Specified as
2566c1
# "<device-on-host>:<device-on-container>:<permissions>", for example:
2566c1
# "/dev/sdc:/dev/xvdc:rwm".
2566c1
# If it is empty or commented out, only the default devices will be used
2566c1
#
2566c1
#devices = []
2566c1
2566c1
# List of default DNS options to be added to /etc/resolv.conf inside of the container.
2566c1
#
2566c1
#dns_options = []
2566c1
2566c1
# List of default DNS search domains to be added to /etc/resolv.conf inside of the container.
2566c1
#
2566c1
#dns_searches = []
2566c1
2566c1
# Set default DNS servers.
2566c1
# This option can be used to override the DNS configuration passed to the
2566c1
# container. The special value "none" can be specified to disable creation of
2566c1
# /etc/resolv.conf in the container.
2566c1
# The /etc/resolv.conf file in the image will be used without changes.
2566c1
#
2566c1
#dns_servers = []
2566c1
2566c1
# Environment variable list for the conmon process; used for passing necessary
2566c1
# environment variables to conmon or the runtime.
2566c1
#
2566c1
#env = [
2566c1
#  "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin",
2566c1
#  "TERM=xterm",
2566c1
#]
2566c1
2566c1
# Pass all host environment variables into the container.
2566c1
#
2566c1
#env_host = false
2566c1
2566c1
# Default proxy environment variables passed into the container.
2566c1
# The environment variables passed in include:
2566c1
# http_proxy, https_proxy, ftp_proxy, no_proxy, and the upper case versions of
2566c1
# these. This option is needed when host system uses a proxy but container
2566c1
# should not use proxy. Proxy environment variables specified for the container
2566c1
# in any other way will override the values passed from the host.
2566c1
#
2566c1
#http_proxy = true
2566c1
2566c1
# Run an init inside the container that forwards signals and reaps processes.
2566c1
#
2566c1
#init = false
2566c1
2566c1
# Container init binary, if init=true, this is the init binary to be used for containers.
2566c1
#
2566c1
#init_path = "/usr/libexec/podman/catatonit"
2566c1
2566c1
# Default way to to create an IPC namespace (POSIX SysV IPC) for the container
2566c1
# Options are:
2566c1
# `private` Create private IPC Namespace for the container.
2566c1
# `host`    Share host IPC Namespace with the container.
2566c1
#
2566c1
#ipcns = "private"
2566c1
2566c1
# keyring tells the container engine whether to create
2566c1
# a kernel keyring for use within the container.
2566c1
#
2566c1
#keyring = true
2566c1
2566c1
# label tells the container engine whether to use container separation using
2566c1
# MAC(SELinux) labeling or not.
2566c1
# The label flag is ignored on label disabled systems.
2566c1
#
2566c1
#label = true
2566c1
2566c1
# Logging driver for the container. Available options: k8s-file and journald.
2566c1
#
2566c1
#log_driver = "k8s-file"
2566c1
log_driver = "k8s-file"
2566c1
2566c1
# Maximum size allowed for the container log file. Negative numbers indicate
2566c1
# that no size limit is imposed. If positive, it must be >= 8192 to match or
2566c1
# exceed conmon's read buffer. The file is truncated and re-opened so the
2566c1
# limit is never exceeded.
2566c1
#
2566c1
#log_size_max = -1
2566c1
2566c1
# Specifies default format tag for container log messages.
2566c1
# This is useful for creating a specific tag for container log messages.
2566c1
# Containers logs default to truncated container ID as a tag.
2566c1
#
2566c1
#log_tag = ""
2566c1
2566c1
# Default way to to create a Network namespace for the container
2566c1
# Options are:
2566c1
# `private` Create private Network Namespace for the container.
2566c1
# `host`    Share host Network Namespace with the container.
2566c1
# `none`    Containers do not use the network
2566c1
#
2566c1
#netns = "private"
2566c1
2566c1
# Create /etc/hosts for the container.  By default, container engine manage
2566c1
# /etc/hosts, automatically adding  the container's  own  IP  address.
2566c1
#
2566c1
#no_hosts = false
2566c1
2566c1
# Default way to to create a PID namespace for the container
2566c1
# Options are:
2566c1
# `private` Create private PID Namespace for the container.
2566c1
# `host`    Share host PID Namespace with the container.
2566c1
#
2566c1
#pidns = "private"
2566c1
2566c1
# Maximum number of processes allowed in a container.
2566c1
#
2566c1
#pids_limit = 2048
2566c1
2566c1
# Copy the content from the underlying image into the newly created volume
2566c1
# when the container is created instead of when it is started. If false,
2566c1
# the container engine will not copy the content until the container is started.
2566c1
# Setting it to true may have negative performance implications.
2566c1
#
2566c1
#prepare_volume_on_create = false
2566c1
2566c1
# Path to the seccomp.json profile which is used as the default seccomp profile
2566c1
# for the runtime.
2566c1
#
2566c1
#seccomp_profile = "/usr/share/containers/seccomp.json"
2566c1
2566c1
# Size of /dev/shm. Specified as <number><unit>.
2566c1
# Unit is optional, values:
2566c1
# b (bytes), k (kilobytes), m (megabytes), or g (gigabytes).
2566c1
# If the unit is omitted, the system uses bytes.
2566c1
#
2566c1
#shm_size = "65536k"
2566c1
2566c1
# Set timezone in container. Takes IANA timezones as well as "local",
2566c1
# which sets the timezone in the container to match the host machine.
2566c1
#
2566c1
#tz = ""
2566c1
2566c1
# Set umask inside the container
2566c1
#
2566c1
#umask = "0022"
2566c1
2566c1
# Default way to to create a User namespace for the container
2566c1
# Options are:
2566c1
# `auto`        Create unique User Namespace for the container.
2566c1
# `host`    Share host User Namespace with the container.
2566c1
#
2566c1
#userns = "host"
2566c1
2566c1
# Number of UIDs to allocate for the automatic container creation.
2566c1
# UIDs are allocated from the "container" UIDs listed in
2566c1
# /etc/subuid & /etc/subgid
2566c1
#
2566c1
#userns_size = 65536
2566c1
2566c1
# Default way to to create a UTS namespace for the container
2566c1
# Options are:
2566c1
# `private`        Create private UTS Namespace for the container.
2566c1
# `host`    Share host UTS Namespace with the container.
2566c1
#
2566c1
#utsns = "private"
2566c1
2566c1
# List of volumes. Specified as
2566c1
# "<directory-on-host>:<directory-in-container>:<options>", for example:
2566c1
# "/db:/var/lib/db:ro".
2566c1
# If it is empty or commented out, no volumes will be added
2566c1
#
2566c1
#volumes = []
2566c1
2566c1
[secrets]
2566c1
#driver = "file"
2566c1
2566c1
[secrets.opts]
2566c1
#root = "/example/directory"
2566c1
2566c1
[network]
2566c1
2566c1
# Network backend determines what network driver will be used to set up and tear down container networks.
2566c1
# Valid values are "cni" and "netavark".
2566c1
# The default value is empty which means that it will automatically choose CNI or netavark. If there are
2566c1
# already containers/images or CNI networks preset it will choose CNI.
2566c1
#
2566c1
# Before changing this value all containers must be stopped otherwise it is likely that
2566c1
# iptables rules and network interfaces might leak on the host. A reboot will fix this.
2566c1
#
2566c1
#network_backend = ""
2566c1
network_backend = "cni"
2566c1
2566c1
# Path to directory where CNI plugin binaries are located.
2566c1
#
2566c1
#cni_plugin_dirs = [
2566c1
#  "/usr/local/libexec/cni",
2566c1
#  "/usr/libexec/cni",
2566c1
#  "/usr/local/lib/cni",
2566c1
#  "/usr/lib/cni",
2566c1
#  "/opt/cni/bin",
2566c1
#]
2566c1
2566c1
# The network name of the default network to attach pods to.
2566c1
#
2566c1
#default_network = "podman"
2566c1
2566c1
# The default subnet for the default network given in default_network.
2566c1
# If a network with that name does not exist, a new network using that name and
2566c1
# this subnet will be created.
2566c1
# Must be a valid IPv4 CIDR prefix.
2566c1
#
2566c1
#default_subnet = "10.88.0.0/16"
2566c1
2566c1
# Path to the directory where network configuration files are located.
2566c1
# For the CNI backend the default is "/etc/cni/net.d" as root
2566c1
# and "$HOME/.config/cni/net.d" as rootless.
2566c1
# For the netavark backend "/etc/containers/networks" is used as root
2566c1
# and "$graphroot/networks" as rootless.
2566c1
#
2566c1
#network_config_dir = "/etc/cni/net.d/"
2566c1
2566c1
[engine]
2566c1
# Index to the active service
2566c1
#
2566c1
#active_service = production
2566c1
2566c1
# The compression format to use when pushing an image.
2566c1
# Valid options are: `gzip`, `zstd` and `zstd:chunked`.
2566c1
#
2566c1
#compression_format = "gzip"
2566c1
2566c1
2566c1
# Cgroup management implementation used for the runtime.
2566c1
# Valid options "systemd" or "cgroupfs"
2566c1
#
2566c1
#cgroup_manager = "systemd"
2566c1
2566c1
# Environment variables to pass into conmon
2566c1
#
2566c1
#conmon_env_vars = [
2566c1
#  "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"
2566c1
#]
2566c1
2566c1
# Paths to look for the conmon container manager binary
2566c1
#
2566c1
#conmon_path = [
2566c1
#  "/usr/libexec/podman/conmon",
2566c1
#  "/usr/local/libexec/podman/conmon",
2566c1
#  "/usr/local/lib/podman/conmon",
2566c1
#  "/usr/bin/conmon",
2566c1
#  "/usr/sbin/conmon",
2566c1
#  "/usr/local/bin/conmon",
2566c1
#  "/usr/local/sbin/conmon"
2566c1
#]
2566c1
2566c1
# Enforces using docker.io for completing short names in Podman's compatibility
2566c1
# REST API. Note that this will ignore unqualified-search-registries and
2566c1
# short-name aliases defined in containers-registries.conf(5).
2566c1
#compat_api_enforce_docker_hub = true
2566c1
2566c1
# Specify the keys sequence used to detach a container.
2566c1
# Format is a single character [a-Z] or a comma separated sequence of
2566c1
# `ctrl-<value>`, where `<value>` is one of:
2566c1
# `a-z`, `@`, `^`, `[`, `\`, `]`, `^` or `_`
2566c1
#
2566c1
#detach_keys = "ctrl-p,ctrl-q"
2566c1
2566c1
# Determines whether engine will reserve ports on the host when they are
2566c1
# forwarded to containers. When enabled, when ports are forwarded to containers,
2566c1
# ports are held open by as long as the container is running, ensuring that
2566c1
# they cannot be reused by other programs on the host. However, this can cause
2566c1
# significant memory usage if a container has many ports forwarded to it.
2566c1
# Disabling this can save memory.
2566c1
#
2566c1
#enable_port_reservation = true
2566c1
2566c1
# Environment variables to be used when running the container engine (e.g., Podman, Buildah).
2566c1
# For example "http_proxy=internal.proxy.company.com".
2566c1
# Note these environment variables will not be used within the container.
2566c1
# Set the env section under [containers] table, if you want to set environment variables for the container.
2566c1
#
2566c1
#env = []
2566c1
2566c1
# Define where event logs will be stored, when events_logger is "file".
2566c1
#events_logfile_path=""
2566c1
2566c1
# Selects which logging mechanism to use for container engine events.
2566c1
# Valid values are `journald`, `file` and `none`.
2566c1
#
2566c1
#events_logger = "journald"
2566c1
events_logger = "file"
2566c1
2566c1
# A is a list of directories which are used to search for helper binaries.
2566c1
#
2566c1
#helper_binaries_dir = [
2566c1
#  "/usr/local/libexec/podman",
2566c1
#  "/usr/local/lib/podman",
2566c1
#  "/usr/libexec/podman",
2566c1
#  "/usr/lib/podman",
2566c1
#]
2566c1
2566c1
# Path to OCI hooks directories for automatically executed hooks.
2566c1
#
2566c1
#hooks_dir = [
2566c1
#  "/usr/share/containers/oci/hooks.d",
2566c1
#]
2566c1
2566c1
# Manifest Type (oci, v2s2, or v2s1) to use when pulling, pushing, building
2566c1
# container images. By default image pulled and pushed match the format of the
2566c1
# source image. Building/committing defaults to OCI.
2566c1
#
2566c1
#image_default_format = ""
2566c1
2566c1
# Default transport method for pulling and pushing for images
2566c1
#
2566c1
#image_default_transport = "docker://"
2566c1
2566c1
# Maximum number of image layers to be copied (pulled/pushed) simultaneously.
2566c1
# Not setting this field, or setting it to zero, will fall back to containers/image defaults.
2566c1
#
2566c1
#image_parallel_copies = 0
2566c1
2566c1
# Default command to run the infra container
2566c1
#
2566c1
#infra_command = "/pause"
2566c1
2566c1
# Infra (pause) container image name for pod infra containers.  When running a
2566c1
# pod, we start a `pause` process in a container to hold open the namespaces
2566c1
# associated with the  pod.  This container does nothing other then sleep,
2566c1
# reserving the pods resources for the lifetime of the pod. By default container
2566c1
# engines run a builtin container using the pause executable. If you want override
2566c1
# specify an image to pull.
2566c1
#
2566c1
#infra_image = ""
2566c1
2566c1
# Specify the locking mechanism to use; valid values are "shm" and "file".
2566c1
# Change the default only if you are sure of what you are doing, in general
2566c1
# "file" is useful only on platforms where cgo is not available for using the
2566c1
# faster "shm" lock type. You may need to run "podman system renumber" after
2566c1
# you change the lock type.
2566c1
#
2566c1
#lock_type** = "shm"
2566c1
2566c1
# Indicates if Podman is running inside a VM via Podman Machine.
2566c1
# Podman uses this value to do extra setup around networking from the
2566c1
# container inside the VM to to host.
2566c1
#
2566c1
#machine_enabled = false
2566c1
2566c1
# MultiImageArchive - if true, the container engine allows for storing archives
2566c1
# (e.g., of the docker-archive transport) with multiple images.  By default,
2566c1
# Podman creates single-image archives.
2566c1
#
2566c1
#multi_image_archive = "false"
2566c1
2566c1
# Default engine namespace
2566c1
# If engine is joined to a namespace, it will see only containers and pods
2566c1
# that were created in the same namespace, and will create new containers and
2566c1
# pods in that namespace.
2566c1
# The default namespace is "", which corresponds to no namespace. When no
2566c1
# namespace is set, all containers and pods are visible.
2566c1
#
2566c1
#namespace = ""
2566c1
2566c1
# Path to the slirp4netns binary
2566c1
#
2566c1
#network_cmd_path = ""
2566c1
2566c1
# Default options to pass to the slirp4netns binary.
2566c1
# For example "allow_host_loopback=true"
2566c1
#
2566c1
#network_cmd_options = ["enable_ipv6=true",]
2566c1
2566c1
# Whether to use chroot instead of pivot_root in the runtime
2566c1
#
2566c1
#no_pivot_root = false
2566c1
2566c1
# Number of locks available for containers and pods.
2566c1
# If this is changed, a lock renumber must be performed (e.g. with the
2566c1
# 'podman system renumber' command).
2566c1
#
2566c1
#num_locks = 2048
2566c1
2566c1
# Whether to pull new image before running a container
2566c1
#
2566c1
#pull_policy = "missing"
2566c1
2566c1
# Indicates whether the application should be running in remote mode. This flag modifies the
2566c1
# --remote option on container engines. Setting the flag to true will default
2566c1
# `podman --remote=true` for access to the remote Podman service.
2566c1
#
2566c1
#remote = false
2566c1
2566c1
# Default OCI runtime
2566c1
#
2566c1
#runtime = "crun"
2566c1
runtime = "runc"
2566c1
2566c1
# List of the OCI runtimes that support --format=json. When json is supported
2566c1
# engine will use it for reporting nicer errors.
2566c1
#
2566c1
#runtime_supports_json = ["crun", "runc", "kata", "runsc", "krun"]
2566c1
2566c1
# List of the OCI runtimes that supports running containers with KVM Separation.
2566c1
#
2566c1
#runtime_supports_kvm = ["kata", "krun"]
2566c1
2566c1
# List of the OCI runtimes that supports running containers without cgroups.
2566c1
#
2566c1
#runtime_supports_nocgroups = ["crun", "krun"]
2566c1
2566c1
# Default location for storing temporary container image content. Can be overridden with the TMPDIR environment
2566c1
# variable. If you specify "storage", then the location of the
2566c1
# container/storage tmp directory will be used.
2566c1
# image_copy_tmp_dir="/var/tmp"
2566c1
2566c1
# Number of seconds to wait without a connection
2566c1
# before the `podman system service` times out and exits
2566c1
#
2566c1
#service_timeout = 5
2566c1
2566c1
# Directory for persistent engine files (database, etc)
2566c1
# By default, this will be configured relative to where the containers/storage
2566c1
# stores containers
2566c1
# Uncomment to change location from this default
2566c1
#
2566c1
#static_dir = "/var/lib/containers/storage/libpod"
2566c1
2566c1
# Number of seconds to wait for container to exit before sending kill signal.
2566c1
#
2566c1
#stop_timeout = 10
2566c1
2566c1
# map of service destinations
2566c1
#
2566c1
#[service_destinations]
2566c1
#  [service_destinations.production]
2566c1
#     URI to access the Podman service
2566c1
#     Examples:
2566c1
#       rootless "unix://run/user/$UID/podman/podman.sock" (Default)
2566c1
#       rootfull "unix://run/podman/podman.sock (Default)
2566c1
#       remote rootless ssh://engineering.lab.company.com/run/user/1000/podman/podman.sock
2566c1
#       remote rootfull ssh://root@10.10.1.136:22/run/podman/podman.sock
2566c1
#
2566c1
#    uri = "ssh://user@production.example.com/run/user/1001/podman/podman.sock"
2566c1
#    Path to file containing ssh identity key
2566c1
#    identity = "~/.ssh/id_rsa"
2566c1
2566c1
# Directory for temporary files. Must be tmpfs (wiped after reboot)
2566c1
#
2566c1
#tmp_dir = "/run/libpod"
2566c1
2566c1
# Directory for libpod named volumes.
2566c1
# By default, this will be configured relative to where containers/storage
2566c1
# stores containers.
2566c1
# Uncomment to change location from this default.
2566c1
#
2566c1
#volume_path = "/var/lib/containers/storage/volumes"
2566c1
2566c1
# Paths to look for a valid OCI runtime (crun, runc, kata, runsc, krun, etc)
2566c1
[engine.runtimes]
2566c1
#crun = [
2566c1
#  "/usr/bin/crun",
2566c1
#  "/usr/sbin/crun",
2566c1
#  "/usr/local/bin/crun",
2566c1
#  "/usr/local/sbin/crun",
2566c1
#  "/sbin/crun",
2566c1
#  "/bin/crun",
2566c1
#  "/run/current-system/sw/bin/crun",
2566c1
#]
2566c1
2566c1
#kata = [
2566c1
#  "/usr/bin/kata-runtime",
2566c1
#  "/usr/sbin/kata-runtime",
2566c1
#  "/usr/local/bin/kata-runtime",
2566c1
#  "/usr/local/sbin/kata-runtime",
2566c1
#  "/sbin/kata-runtime",
2566c1
#  "/bin/kata-runtime",
2566c1
#  "/usr/bin/kata-qemu",
2566c1
#  "/usr/bin/kata-fc",
2566c1
#]
2566c1
2566c1
#runc = [
2566c1
#  "/usr/bin/runc",
2566c1
#  "/usr/sbin/runc",
2566c1
#  "/usr/local/bin/runc",
2566c1
#  "/usr/local/sbin/runc",
2566c1
#  "/sbin/runc",
2566c1
#  "/bin/runc",
2566c1
#  "/usr/lib/cri-o-runc/sbin/runc",
2566c1
#]
2566c1
2566c1
#runsc = [
2566c1
#  "/usr/bin/runsc",
2566c1
#  "/usr/sbin/runsc",
2566c1
#  "/usr/local/bin/runsc",
2566c1
#  "/usr/local/sbin/runsc",
2566c1
#  "/bin/runsc",
2566c1
#  "/sbin/runsc",
2566c1
#  "/run/current-system/sw/bin/runsc",
2566c1
#]
2566c1
2566c1
#krun = [
2566c1
#  "/usr/bin/krun",
2566c1
#  "/usr/local/bin/krun",
2566c1
#]
2566c1
2566c1
[engine.volume_plugins]
2566c1
#testplugin = "/run/podman/plugins/test.sock"
2566c1
2566c1
[machine]
2566c1
# Number of CPU's a machine is created with.
2566c1
#
2566c1
#cpus=1
2566c1
2566c1
# The size of the disk in GB created when init-ing a podman-machine VM.
2566c1
#
2566c1
#disk_size=10
2566c1
2566c1
# The image used when creating a podman-machine VM.
2566c1
#
2566c1
#image = "testing"
2566c1
2566c1
# Memory in MB a machine is created with.
2566c1
#
2566c1
#memory=2048
2566c1
2566c1
# The username to use and create on the podman machine OS for rootless
2566c1
# container access.
2566c1
#
2566c1
#user = "core"
2566c1
2566c1
# The [machine] table MUST be the last entry in this file.
2566c1
# (Unless another table is added)
2566c1
# TOML does not provide a way to end a table other than a further table being
2566c1
# defined, so every key hereafter will be part of [machine] and not the
2566c1
# main config.