Compare commits

...

2 Commits

4 changed files with 3 additions and 10 deletions

View File

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

2
user/.gitignore vendored
View File

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

View File

@ -1,5 +1,5 @@
# Home Manager Configuration # Home Manager Configuration
This directory contains my configuration for home-manager, which can be easily installed by running `./install.sh {machine name}`. This directory contains my configuration for home-manager.
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. 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.

View File

@ -1,5 +0,0 @@
# 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