From d7f1434ff7e9b601aa0e4132b83ce5bdc0ef0d48 Mon Sep 17 00:00:00 2001 From: Ian McFarlane Date: Tue, 6 Dec 2022 18:08:31 -0500 Subject: [PATCH] fix misplaced brackets in sed command --- home-manager-install.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/home-manager-install.md b/home-manager-install.md index 344f7cc4..530d2f28 100644 --- a/home-manager-install.md +++ b/home-manager-install.md @@ -26,7 +26,7 @@ spicetify in your current directory. mkdir ~/home-manager-config && cd ~/home-manager-config nix flake init --template github:the-argus/spicetify-nix --extra-experimental-features nix-command --extra-experimental-features flakes sed "0,/unknown_username/{s/unknown_username/$(whoami)/}" -i flake.nix -sed "0,/unknown_hostname/{s/unknown_hostname/$(hostname)}/" -i flake.nix +sed "0,/unknown_hostname/{s/unknown_hostname/$(hostname)/}" -i flake.nix git init --initial-branch=main git add . home-manager switch --flake . --extra-experimental-features nix-command --extra-experimental-features flakes