From 28cac5ec50b45c188f30c790272f6d14ca2e1a48 Mon Sep 17 00:00:00 2001 From: 4o1x5 <4o1x5@4o1x5.dev> Date: Fri, 10 May 2024 15:51:31 +0200 Subject: [PATCH] fix: scp command was wrong --- content/post/guides/nix/remote-development/index.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content/post/guides/nix/remote-development/index.md b/content/post/guides/nix/remote-development/index.md index 6a92a83..c7f3413 100644 --- a/content/post/guides/nix/remote-development/index.md +++ b/content/post/guides/nix/remote-development/index.md @@ -115,11 +115,11 @@ NixOS does not support partial builds, so you will need to transfer all the nece your local machine. This includes files such as `hardware-configuration.nix` and `configuration.nix`. ```bash -scp configuration.nix root@server:/etc/nixos +scp root@server:/etc/nixos/configuration.nix configuration.nix ``` ```bash -scp hardware-configuration.nix root@server:/etc/nixos +scp root@server:/etc/nixos/hardware-configuration.nix hardware-configuration.nix ``` ## Create flakes