Compare commits

..

No commits in common. "695006312e7b78fc2ea952e0da5e0822a448e60f" and "efd729eb3f79db51b18581b2864491646a15a7bb" have entirely different histories.

4 changed files with 10 additions and 3 deletions

View File

@ -27,7 +27,6 @@
wget
micro
firefox
chromium
pkgs.gnome.gnome-tweaks
];
@ -58,7 +57,8 @@
users.users.michael = {
isNormalUser = true;
description = "Michael Thomas";
extraGroups = [ "wheel" "docker" "adbusers" "dialout" ];
extraGroups = [ "wheel" "docker" "adbusers" ]; # Enable sudo for the user.
shell = pkgs.zsh;
};

2
user/.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
/home.nix
/config.nix

View File

@ -1,5 +1,5 @@
# Home Manager Configuration
This directory contains my configuration for home-manager.
This directory contains my configuration for home-manager, which can be easily installed by running `./install.sh {machine name}`.
The `machines` folder contains userland configs for specific machines. Each of these configs will import modules from the `modules` folder for shell config, git config, etc.

5
user/install.sh Executable file
View File

@ -0,0 +1,5 @@
# Where first arg is directory under machines
mkdir -p $HOME/.config
ln -s $(pwd) $HOME/.config/nixpkgs
ln -s $(pwd)/machines/$1/home.nix $HOME/.config/nixpkgs/home.nix
ln -s $(pwd)/machines/$1/config.nix $HOME/.config/nixpkgs/config.nix