replace references to 20.09 with 21.05

This commit is contained in:
Alexander Sosedkin 2021-06-24 22:07:22 +02:00
parent adb5a897ea
commit c4efd68279
5 changed files with 15 additions and 15 deletions

View file

@ -52,7 +52,7 @@ for example:
{ {
environment.packages = [ pkgs.vim ]; environment.packages = [ pkgs.vim ];
system.stateVersion = "20.09"; system.stateVersion = "21.05";
} }
``` ```
@ -66,7 +66,7 @@ An alternative location is `~/.config/nixpkgs/config.nix` with the key
{ {
environment.packages = [ pkgs.vim ]; environment.packages = [ pkgs.vim ];
system.stateVersion = "20.09"; system.stateVersion = "21.05";
}; };
} }
``` ```
@ -80,7 +80,7 @@ To enable `home-manager` you simply need to follow the instructions already prov
1. Add `home-manager` channel: 1. Add `home-manager` channel:
``` ```
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 nix-channel --update
``` ```
2. Configure `home-manager`: 2. Configure `home-manager`:
@ -89,7 +89,7 @@ To enable `home-manager` you simply need to follow the instructions already prov
{ {
# Read nix-on-droid changelog before changing this value # Read nix-on-droid changelog before changing this value
system.stateVersion = "20.09"; system.stateVersion = "21.05";
# insert nix-on-droid config # insert nix-on-droid config
@ -97,7 +97,7 @@ To enable `home-manager` you simply need to follow the instructions already prov
{ pkgs, ... }: { pkgs, ... }:
{ {
# Read home-manager changelog before changing this value # Read home-manager changelog before changing this value
home.stateVersion = "20.09"; home.stateVersion = "21.05";
# insert home-manager config # insert home-manager config
}; };
@ -171,7 +171,7 @@ writing a `flake.nix`:
description = "nix-on-droid configuration"; description = "nix-on-droid configuration";
inputs = { inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/release-20.09"; nixpkgs.url = "github:NixOS/nixpkgs/release-21.05";
nix-on-droid.url = "github:t184256/nix-on-droid/master"; nix-on-droid.url = "github:t184256/nix-on-droid/master";
nix-on-droid.inputs.nixpkgs.follows = "nixpkgs"; nix-on-droid.inputs.nixpkgs.follows = "nixpkgs";
}; };

View file

@ -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, ... }: { config, lib, pkgs, ... }:
@ -13,13 +13,13 @@ with lib;
build.channel = { build.channel = {
nixpkgs = mkOption { nixpkgs = mkOption {
type = types.str; type = types.str;
default = "https://nixos.org/channels/nixos-20.09"; default = "https://nixos.org/channels/nixos-21.05";
description = "Channel URL for nixpkgs."; description = "Channel URL for nixpkgs.";
}; };
nix-on-droid = mkOption { nix-on-droid = mkOption {
type = types.str; 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."; description = "Channel URL for nix-on-droid.";
}; };
}; };

View file

@ -28,17 +28,17 @@
environment.etcBackupExtension = ".bak"; environment.etcBackupExtension = ".bak";
# Read the changelog before changing this value # Read the changelog before changing this value
system.stateVersion = "20.09"; system.stateVersion = "21.05";
# After installing home-manager channel like # 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 # nix-channel --update
# you can configure home-manager in here like # you can configure home-manager in here like
#home-manager.config = #home-manager.config =
# { pkgs, ... }: # { pkgs, ... }:
# { # {
# # Read the changelog before changing this value # # Read the changelog before changing this value
# home.stateVersion = "20.09"; # home.stateVersion = "21.05";
# #
# # Use the same overlays as the system packages # # Use the same overlays as the system packages
# nixpkgs.overlays = config.nixpkgs.overlays; # nixpkgs.overlays = config.nixpkgs.overlays;

View file

@ -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, ... }: { config, lib, pkgs, home-manager, ... }:

View file

@ -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, ... }: { config, lib, pkgs, ... }:
@ -11,7 +11,7 @@ with lib;
options = { options = {
system.stateVersion = mkOption { 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"; default = "19.09";
description = '' description = ''
It is occasionally necessary for nix-on-droid to change It is occasionally necessary for nix-on-droid to change