fix: deletes default config before continuing

This commit is contained in:
Menno van Leeuwen 2024-11-02 18:57:58 +01:00
parent da2aa042cd
commit a8f9dd41f0
Signed by: vleeuwenmenno
SSH Key Fingerprint: SHA256:OJFmjANpakwD3F2Rsws4GLtbdz1TJ5tkQF0RZmF0TRE
2 changed files with 5 additions and 1 deletions

View File

@ -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

View File

@ -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
}