all repos — nixfiles @ 4af53751bbb70f60e1b4300b9fd7d136bc738e90

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

user/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