Skip to content

dreisss/dotfiles

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 

Repository files navigation

dotfiles

This repository contains my personal dotfiles and setup files.

To utilize this configuration in NixOS, please follow the steps below:

  1. Clone the repository to your computer:
git clone https://github.com/dreisss/dotfiles.git ~/.dotfiles
  1. Open the main configuration file in your preferred text editor with administrative privileges:
sudo nano /etc/nixos/configuration.nix
  1. Locate the imports section and append the following line:
imports = [
  /home/your_username/.dotfiles/config
];
  1. Ensure to customize all configurations for your specific user: Replace your_username with your actual username.

  2. Execute the init script to initialize the setup:

~/.dotfiles/scripts/setup-nixos
  1. Rebuild the system to apply the updated configuration:
sudo nixos-rebuild switch --upgrade
  1. Reboot the system to activate the changes.