summary refs log tree commit diff
path: root/nixos
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2013-11-11 11:22:41 +0100
committerEelco Dolstra <eelco.dolstra@logicblox.com>2013-11-11 11:26:15 +0100
commit6441a9c1d08a0c309f7a85980b9ad86f2d84ecd5 (patch)
treec17fd68d6aae3b51bbc289f0bf2f47e15f4e572b /nixos
parentcec700aab058db238176f591e1b919f30da54ce2 (diff)
downloadnixpkgs-6441a9c1d08a0c309f7a85980b9ad86f2d84ecd5.tar
nixpkgs-6441a9c1d08a0c309f7a85980b9ad86f2d84ecd5.tar.gz
nixpkgs-6441a9c1d08a0c309f7a85980b9ad86f2d84ecd5.tar.bz2
nixpkgs-6441a9c1d08a0c309f7a85980b9ad86f2d84ecd5.tar.lz
nixpkgs-6441a9c1d08a0c309f7a85980b9ad86f2d84ecd5.tar.xz
nixpkgs-6441a9c1d08a0c309f7a85980b9ad86f2d84ecd5.tar.zst
nixpkgs-6441a9c1d08a0c309f7a85980b9ad86f2d84ecd5.zip
Don't set the default channel to 13.10 when installing from master
Partial revert of 619a1f561480a300ce28f0f471e73fecda85fd60.
Diffstat (limited to 'nixos')
-rw-r--r--nixos/modules/misc/version.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/misc/version.nix b/nixos/modules/misc/version.nix
index 41f75483f95..ae9fb5fb2a0 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.";
     };