Default to release-20.03 of nix-on-droid

This commit is contained in:
Tobias Happ 2020-04-26 14:13:08 +02:00
parent e260c20a2e
commit 886fbb050e
2 changed files with 3 additions and 3 deletions

View file

@ -38,8 +38,8 @@ rec {
echo
echo "Recommended: update with what you've used before (home-manager switch -or- nix-env -u)"
echo
echo "Required if you've followed the steps above: set nix-on-droid channel to master"
echo " nix-channel --add https://github.com/t184256/nix-on-droid/archive/master.tar.gz nix-on-droid"
echo "Required if you've followed the steps above: set nix-on-droid channel to release-20.03"
echo " nix-channel --add https://github.com/t184256/nix-on-droid/archive/release-20.03.tar.gz nix-on-droid"
echo
echo "Finally,"
echo " nix-shell '<nix-on-droid>' -A migration"

View file

@ -19,7 +19,7 @@ with lib;
nix-on-droid = mkOption {
type = types.str;
default = "https://github.com/t184256/nix-on-droid/archive/master.tar.gz";
default = "https://github.com/t184256/nix-on-droid/archive/release-20.03.tar.gz";
description = "Channel URL for nix-on-droid.";
};
};