programs.radicle: Document how "rad auth" must be used with this

Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
This commit is contained in:
Matthias Beyer 2026-02-12 16:30:20 +01:00 committed by Austin Horstman
parent e9b706bef7
commit b3258dece8

View file

@ -136,7 +136,13 @@ in
node = {
alias = mkOption {
type = str;
description = "Human readable alias for your node.";
description = ''
Human readable alias for your node.
When running 'rad auth' for the first time, you need to use the exact same alias,
otherwise 'rad auth' will fail because it cannot write the configuration
file in your home directory (which is generated by nix).
'';
default = config.home.username;
defaultText = lib.literalExpression "config.home.username";
};