blob: 5530d773768935b8317c3caca2746fe7a4731655 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
source common.sh
home=$TEST_ROOT/home
rm -rf $home
mkdir -p $home
HOME=$home $SHELL -e -c ". $sysconfdir/profile.d/nix.sh"
HOME=$home $SHELL -e -c ". $sysconfdir/profile.d/nix.sh" # test idempotency
[ -e $home/.nix-profile ]
[ -e $home/.nix-channels ]
|