1
0
Fork 0

unix-setup.sh: incorporate the new centralized flake setup of prathams-nixos

This commit is contained in:
Pratham Patel 2024-04-10 16:10:09 +05:30
parent 7090d6bb4f
commit 76f73bd05c
Signed by: thefossguy
SSH Key Fingerprint: SHA256:HwRBy9H1FYXWcv/Qi1WY3kmcVtGz2ydZuPJgD4pkusY
1 changed files with 4 additions and 10 deletions

View File

@ -161,20 +161,14 @@ function home_manager_setup() {
# otherwise you get a 'command not found' error like this
# /nix/store/bpdrgm43y8mgjd5g6q13yfydj9057gly-home-manager/bin/home-manager: line 510: nix-build: command not found
export PATH="${HOME}/.nix-profile/bin:/nix/var/nix/profiles/default/bin:$PATH"
HM_CONFIG_PATH="${HOME}/my-git-repos/$(whoami)/prathams-nixos"
nix_setup
if ! command -v home-manager > /dev/null; then
# pushd-ing because otherwise the flake.nix points to
# '/home/pratham/.config/home-manager/hm.flake.nix' but home-manager,
# for some reason does not like it; probably because it assumes the
# source to be **outside of $HOME**; so make it point to './<file>'
pushd "${HOME}/.config/home-manager"
[[ ! -f 'flake.nix' ]] && ln -s {hm.,}flake.nix
[[ ! -f 'home.nix' ]] && ln -s {common,home}.nix
popd
nix run home-manager/master -- init --switch
mkdir -vp "${HM_CONFIG_PATH}"
git clone https://gitlab.com/thefossguy/prathams-nixos "${HM_CONFIG_PATH}"
nix run home-manager/master -- --print-build-logs init --switch --flake "${HM_CONFIG_PATH}"
fi
}
function run_rustup() {