Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

Set channel and version to 19.03

Changed files
+2 -2
nixos
modules
+1 -1
nixos/modules/misc/version.nix
··· 66 66 defaultChannel = mkOption { 67 67 internal = true; 68 68 type = types.str; 69 - default = https://nixos.org/channels/nixos-unstable; 69 + default = https://nixos.org/channels/nixos-19.03; 70 70 description = "Default NixOS channel to which the root user is subscribed."; 71 71 }; 72 72
+1 -1
nixos/release.nix
··· 12 12 13 13 version = fileContents ../.version; 14 14 versionSuffix = 15 - (if stableBranch then "." else "pre") + "${toString nixpkgs.revCount}.${nixpkgs.shortRev}"; 15 + (if stableBranch then "." else "beta") + "${toString nixpkgs.revCount}.${nixpkgs.shortRev}"; 16 16 17 17 # Run the tests for each platform. You can run a test by doing 18 18 # e.g. ‘nix-build -A tests.login.x86_64-linux’, or equivalently,