I have the following block in my distrobuilder YAML file:
environment:
variables:
- key: user_uid
value: "1000"
- key: user_gid
value: "1000"
- key: user_name
value: citadel
- key: group_name
value: citadel
How can I modify the value of these variables when using the file to build an incus image via distrobuilder build-incus?
I tried using the -o option like that:
environment.variables.user_gid=1000 and environment.variables.user_gid.value=1000
but that did not work.