From 7706fe0dcc3339ada2e28a8bcd1a28f51f1b82e5 Mon Sep 17 00:00:00 2001 From: Vunny Sodhi Date: Mon, 22 Apr 2024 10:33:08 +0300 Subject: [PATCH] Docs: update development instructions link Updating accounts.nix and ssh.nix links which got outdated due to recent refactoring. Signed-off-by: Vunny Sodhi --- docs/src/ref_impl/development.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/src/ref_impl/development.md b/docs/src/ref_impl/development.md index 88845c3c7..20faaac64 100644 --- a/docs/src/ref_impl/development.md +++ b/docs/src/ref_impl/development.md @@ -16,9 +16,9 @@ The scope of target support is updated with development progress: * [Creating Application VM](./creating_appvm.md) * [labwc Desktop Environment](./labwc.md) -Once you are up and running, you can participate in the collaborative development process by building a development build with additional options. For example, with the development username and password that are defined in [accounts.nix](https://github.com/tiiuae/ghaf/blob/main/modules/users/accounts.nix). +Once you are up and running, you can participate in the collaborative development process by building a development build with additional options. For example, with the development username and password that are defined in [accounts.nix](https://github.com/tiiuae/ghaf/blob/main/modules/common/users/accounts.nix). -If you authorize your development SSH keys in the [ssh.nix](https://github.com/tiiuae/ghaf/blob/main/modules/development/ssh.nix#L10-L23) module and rebuild Ghaf for your target device, you can use `nixos-rebuild switch` to quickly deploy your configuration changes to the target device over the network using SSH. For example: +If you authorize your development SSH keys in the [ssh.nix](https://github.com/tiiuae/ghaf/blob/main/modules/common/development/authorized_ssh_keys.nix#L4-L21) module and rebuild Ghaf for your target device, you can use `nixos-rebuild switch` to quickly deploy your configuration changes to the target device over the network using SSH. For example: nixos-rebuild --flake .#nvidia-jetson-orin-agx-debug --target-host root@ --fast switch ...