12 lines
327 B
Bash
12 lines
327 B
Bash
if [[ ! -x $(command -v nix) ]]; then
|
|
echo "make sure to install nix"
|
|
exit 1
|
|
fi
|
|
|
|
nix-channel --add https://github.com/nix-community/home-manager/archive/master.tar.gz home-manager
|
|
nix-channel --update
|
|
|
|
nix-shell '<home-manager>' -A install
|
|
|
|
nix flake --update
|
|
home-manager switch --flake "$PWD/home-manager#acicchetti"
|