mirror of
https://github.com/nix-community/nix-on-droid.git
synced 2025-11-08 19:46:07 +01:00
replace references to 20.09 with 21.05
This commit is contained in:
parent
adb5a897ea
commit
c4efd68279
5 changed files with 15 additions and 15 deletions
|
|
@ -1,4 +1,4 @@
|
|||
# Copyright (c) 2019-2020, see AUTHORS. Licensed under MIT License, see LICENSE.
|
||||
# Copyright (c) 2019-2021, 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-20.09";
|
||||
default = "https://nixos.org/channels/nixos-21.05";
|
||||
description = "Channel URL for nixpkgs.";
|
||||
};
|
||||
|
||||
nix-on-droid = mkOption {
|
||||
type = types.str;
|
||||
default = "https://github.com/t184256/nix-on-droid/archive/release-20.09.tar.gz";
|
||||
default = "https://github.com/t184256/nix-on-droid/archive/release-21.05.tar.gz";
|
||||
description = "Channel URL for nix-on-droid.";
|
||||
};
|
||||
};
|
||||
|
|
|
|||
|
|
@ -28,17 +28,17 @@
|
|||
environment.etcBackupExtension = ".bak";
|
||||
|
||||
# Read the changelog before changing this value
|
||||
system.stateVersion = "20.09";
|
||||
system.stateVersion = "21.05";
|
||||
|
||||
# After installing home-manager channel like
|
||||
# nix-channel --add https://github.com/rycee/home-manager/archive/release-20.09.tar.gz home-manager
|
||||
# nix-channel --add https://github.com/rycee/home-manager/archive/release-21.05.tar.gz home-manager
|
||||
# nix-channel --update
|
||||
# you can configure home-manager in here like
|
||||
#home-manager.config =
|
||||
# { pkgs, ... }:
|
||||
# {
|
||||
# # Read the changelog before changing this value
|
||||
# home.stateVersion = "20.09";
|
||||
# home.stateVersion = "21.05";
|
||||
#
|
||||
# # Use the same overlays as the system packages
|
||||
# nixpkgs.overlays = config.nixpkgs.overlays;
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
# Copyright (c) 2019-2020, see AUTHORS. Licensed under MIT License, see LICENSE.
|
||||
# Copyright (c) 2019-2021, see AUTHORS. Licensed under MIT License, see LICENSE.
|
||||
|
||||
{ config, lib, pkgs, home-manager, ... }:
|
||||
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
# Copyright (c) 2019-2020, see AUTHORS. Licensed under MIT License, see LICENSE.
|
||||
# Copyright (c) 2019-2021, see AUTHORS. Licensed under MIT License, see LICENSE.
|
||||
|
||||
{ config, lib, pkgs, ... }:
|
||||
|
||||
|
|
@ -11,7 +11,7 @@ with lib;
|
|||
options = {
|
||||
|
||||
system.stateVersion = mkOption {
|
||||
type = types.enum [ "19.09" "20.03" "20.09" ];
|
||||
type = types.enum [ "19.09" "20.03" "20.09" "21.05" ];
|
||||
default = "19.09";
|
||||
description = ''
|
||||
It is occasionally necessary for nix-on-droid to change
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue