From 28c0fc3b5655fa9086838839817006fce0a43e36 Mon Sep 17 00:00:00 2001 From: ItsDrike Date: Sat, 24 Feb 2024 19:20:44 +0100 Subject: [PATCH] Remove section on installing with my flake This part will be moved into another file, leave this file purely as a complete setup guide for your own flake. --- guides/installation.md | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/guides/installation.md b/guides/installation.md index 4efc59c..1c22735 100644 --- a/guides/installation.md +++ b/guides/installation.md @@ -62,19 +62,6 @@ from this repository. Once done, you will have your system set up in the same way that I do. In the second option, I will go over a basic setup to create your own flake. -## Set up with my configuration - -Finally, we're ready to migrate to flakes. At this point, you can simply pull this repository -to the `/etc/nixos` directory, to get my setup, like so: - -```sh -git init -git remote add origin https://github.com/ItsDrike/nixdots -git branch -M main -git pull origin main -nixos-rebuild switch --flake . -``` - ## Create your own custom flake Initialize an empty git repository: @@ -105,10 +92,6 @@ Create a very basic `./flake.nix`: } ``` -This flake will still rely on your `configuration.nix`, we will eventually get -to a config which does not need this file, but to make starting out with flakes -simple, we'll do it in this way for now. - Let's add things to git! ```sh