all repos — nixfiles @ d0200a6b07e497d07dff2cfe0857f4dceb724b58

System and user configuration, managed by nix and home-manager

install.sh (view raw)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/bin/sh

set -eu

if [ -z "$1" ]
then
  echo "Usage: $0 <machine-file.nix>"
  exit 1
fi

NIXDIR="$HOME/.config/nixpkgs"

if [ ! -f "$1" ]
then
  echo "$1 does not exist"
  exit 1
fi

ln -s $PWD $NIXDIR
ln -s $1 home.nix