sh <(curl --proto '=https' --tlsv1.2 -L https://nixos.org/nix/install) --daemon
# enable flakes
mkdir -p ~/.config/nix && \
echo "experimental-features = nix-command flakes" > ~/.config/nix/nix.conf# prepare age key to decrypt sops-nix. it's in the password manager.
mkdir -p ~/.config/sops/age/
touch ~/.config/sops/age/keys.txt
# voila
make home-linux# change default shell to zsh
sudo sed --in-place -e '/auth.*required.*pam_shells.so/s/required/sufficient/g' /etc/pam.d/chsh
chsh -s $(which zsh)see #11