From a8f9dd41f0d865e315dbd93a6355ca497569990d Mon Sep 17 00:00:00 2001 From: Menno van Leeuwen Date: Sat, 2 Nov 2024 18:57:58 +0100 Subject: [PATCH] fix: deletes default config before continuing --- README.md | 5 ++++- setup.sh | 1 + 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index ec274f5..f33328d 100755 --- a/README.md +++ b/README.md @@ -7,7 +7,10 @@ Please install a clean version of NixOS GNOME and then follow the steps below. ### 0. Install NixOS -Either install GNOME or Minimal depending on if you intend to setup a server or desktop. +Download the latest NixOS ISO from the [NixOS website](https://nixos.org/download.html) and write it to a USB stick. +I'd recommend getting the GNOME version as it's easier to setup and you can select minimal from the installer anyway if you want to just setup a headless server. + +#### Note: If you intend on using a desktop environment you should select the GNOME version as this dotfiles repository expects the GNOME desktop environment for various configurations ### 1. Clone dotfiles to home directory diff --git a/setup.sh b/setup.sh index 35b8d1a..280dd3c 100755 --- a/setup.sh +++ b/setup.sh @@ -29,6 +29,7 @@ setup_symlinks() { ln -s $HOME/dotfiles/config/home-manager ~/.config/home-manager # Link proper nixos configs + sudo rm -rf /etc/nixos/configuration.nix sudo ln -s $HOME/dotfiles/config/nixos/configuration.nix /etc/nixos/configuration.nix }