kanidm-client: use home_alias for symlink to short name
Some checks failed
Run nix flake check / flake-check (push) Has been cancelled

Use home_alias instead of home_attr - this creates a symlink from
/home/torjus to the actual home directory, providing a convenient
short path without breaking the underlying storage.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
2026-02-08 14:40:37 +01:00
parent 44e146eedd
commit 97c0b3f7a2

View File

@@ -34,8 +34,8 @@ in
# This prevents "PAM user mismatch" errors with SSH # This prevents "PAM user mismatch" errors with SSH
uid_attr_map = "name"; uid_attr_map = "name";
gid_attr_map = "name"; gid_attr_map = "name";
# Use /home/torjus instead of /home/torjus@home.2rjus.net # Create symlink /home/torjus -> /home/torjus@home.2rjus.net
home_attr = "name"; home_alias = "name";
}; };
}; };
}; };