Update 21.11 references to 22.05

This commit is contained in:
Alexander Sosedkin 2022-06-27 12:31:24 +02:00
parent b4b889845c
commit d1f52f2e1d
9 changed files with 25 additions and 25 deletions

View file

@ -1,4 +1,4 @@
# Copyright (c) 2019-2021, see AUTHORS. Licensed under MIT License, see LICENSE.
# Copyright (c) 2019-2022, see AUTHORS. Licensed under MIT License, see LICENSE.
{ config, lib, pkgs, ... }:
@ -13,13 +13,13 @@ with lib;
build.channel = {
nixpkgs = mkOption {
type = types.str;
default = "https://nixos.org/channels/nixos-21.11";
default = "https://nixos.org/channels/nixos-22.05";
description = "Channel URL for nixpkgs.";
};
nix-on-droid = mkOption {
type = types.str;
default = "https://github.com/t184256/nix-on-droid/archive/release-21.11.tar.gz";
default = "https://github.com/t184256/nix-on-droid/archive/release-22.05.tar.gz";
description = "Channel URL for nix-on-droid.";
};
};