Compare commits
No commits in common. "695006312e7b78fc2ea952e0da5e0822a448e60f" and "efd729eb3f79db51b18581b2864491646a15a7bb" have entirely different histories.
695006312e
...
efd729eb3f
@ -27,7 +27,6 @@
|
|||||||
wget
|
wget
|
||||||
micro
|
micro
|
||||||
firefox
|
firefox
|
||||||
chromium
|
|
||||||
pkgs.gnome.gnome-tweaks
|
pkgs.gnome.gnome-tweaks
|
||||||
];
|
];
|
||||||
|
|
||||||
@ -58,7 +57,8 @@
|
|||||||
users.users.michael = {
|
users.users.michael = {
|
||||||
isNormalUser = true;
|
isNormalUser = true;
|
||||||
description = "Michael Thomas";
|
description = "Michael Thomas";
|
||||||
extraGroups = [ "wheel" "docker" "adbusers" "dialout" ];
|
extraGroups = [ "wheel" "docker" "adbusers" ]; # Enable ‘sudo’ for the user.
|
||||||
|
|
||||||
shell = pkgs.zsh;
|
shell = pkgs.zsh;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
2
user/.gitignore
vendored
Normal file
2
user/.gitignore
vendored
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
/home.nix
|
||||||
|
/config.nix
|
@ -1,5 +1,5 @@
|
|||||||
# Home Manager Configuration
|
# 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.
|
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
5
user/install.sh
Executable 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
|
Loading…
x
Reference in New Issue
Block a user