This repository contains my personal dotfiles and setup files.
To utilize this configuration in NixOS, please follow the steps below:
- Clone the repository to your computer:
git clone https://github.com/dreisss/dotfiles.git ~/.dotfiles
- Open the main configuration file in your preferred text editor with administrative privileges:
sudo nano /etc/nixos/configuration.nix
- Locate the
imports
section and append the following line:
imports = [
/home/your_username/.dotfiles/config
];
-
Ensure to customize all configurations for your specific user: Replace
your_username
with your actual username. -
Execute the init script to initialize the setup:
~/.dotfiles/scripts/setup-nixos
- Rebuild the system to apply the updated configuration:
sudo nixos-rebuild switch --upgrade
- Reboot the system to activate the changes.