about summary refs log blame commit diff stats
path: root/setup-home.sh
blob: d951e33d168cbcdf26e6dc7273e9d5f8b2d484cb (plain) (tree)
1
2
3
4
5
6
7
8
9
10

         
                                                                






                                                                                                                                    

                                                                 

                              

                                       
 
                   

                                                                                

                   
#!/bin/sh

[ -e ~/dotfiles ] || git clone git@codeberg.org:djm/dotfiles.git

nix-channel --add https://github.com/nix-community/home-manager/archive/release-$(nixos-version | cut -d. -f1-2).tar.gz home-manager
nix-channel --update

export NIX_PATH=$HOME/.nix-defexpr/channels:/nix/var/nix/profiles/per-user/root/channels${NIX_PATH:+:$NIX_PATH}
nix-shell '<home-manager>' -A install

HOME_CONF="$HOME/dotfiles/nix-conf/home/${CONF:-${HOST}}.nix"
[ -f $HOME_CONF ] && ln -sf $HOME_CONF ~/.config/nixpkgs/home.nix
ln -sf ~/dotfiles/.p10k.zsh ~/
ln -sf ~/dotfiles/.emacs.d ~/
# TODO can this be included in zsh.nix?
ln -s ~/dotfiles/fzf-git ~/

mkdir ~/.config/nix
echo "extra-experimental-features = nix-command flakes" > ~/.config/nix/nix.conf

home-manager switch