The home directory

On Fedora Silverblue, the value of the $HOME variable is /var/home/mysuer.
On Fedora Kinoite it is the classic /home/myuser. But only for the user created during the installation process.
Indeed, if I create a new user, its home will be /var/home/newuser

$ cat /etc/passwd
root:x:0:0:root:/root:/bin/bash
myuser:x:1000:1000:myuser:/home/myuser:/bin/bash
newuser:x:1001:1001:newuser:/var/home/newuser:/bin/bash

Not a big problem, /home is a symlink to /var/home, but it is a discrepancy.

6 Likes

Thanks for the report. I’ll try to replicate the issue and will make a bug/issue to track it.

3 Likes

Reported as Issue #159: Incorrect value for $HOME for first user on Kinoite - SIG - Pagure.io. Will push updates there.

3 Likes