feat(ccl): init

This commit is contained in:
2025-07-25 12:24:01 +08:00
parent 125a75ec2e
commit c772c2983f
34 changed files with 65 additions and 728 deletions

View File

@@ -16,7 +16,11 @@ in
};
sshKeyPath = lib.mkOption {
type = lib.types.str;
default = "${config.my.persist.location}/home/${username}/.ssh/id_ed25519";
default =
if config.my.persist.enable then
"${config.my.persist.location}/home/${username}/.ssh/id_ed25519"
else
"/home/${username}/.ssh/id_ed25519";
};
};