Hi,
I use the following toml file to create a user:
[[user]]
name = "mipi"
system = false
comment = "mipi"
groups = [ "wheel", "network", "audio", "video", "sys" ]
home = "/home/mipi"
shell = "/usr/bin/zsh"
But though I specify a home directory, it is not created. When I logon as user mipi, I get the error message
mkdir: cannot create directory '/home/mipi': Permission denied
How can I resolve this?
Thanks, mipi