blob: a929086ef2a47ab39e4da916d5892df4a5ad780b (
plain)
1
2
3
4
5
6
7
8
9
10
|
#!/usr/bin/env sh
#
# Downloads and installs home-manager, then symlinks this directory where
# home-manager expects it.
HM_PATH=https://github.com/rycee/home-manager/archive/release-18.03.tar.gz
nix-shell $HM_PATH -A install
[[ -L ~/config ]] && ln -s ~/config ~/.config/nixpkgs
|