From 6441a9c1d08a0c309f7a85980b9ad86f2d84ecd5 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Mon, 11 Nov 2013 11:22:41 +0100 Subject: [PATCH] Don't set the default channel to 13.10 when installing from master Partial revert of 619a1f561480a300ce28f0f471e73fecda85fd60. --- nixos/modules/misc/version.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/modules/misc/version.nix b/nixos/modules/misc/version.nix index 41f75483f951..ae9fb5fb2a0e 100644 --- a/nixos/modules/misc/version.nix +++ b/nixos/modules/misc/version.nix @@ -33,7 +33,7 @@ with pkgs.lib; system.defaultChannel = mkOption { internal = true; type = types.str; - default = https://nixos.org/channels/nixos-13.10; + default = https://nixos.org/channels/nixos-unstable; description = "Default NixOS channel to which the root user is subscribed."; };