Update stateVersions and channel versions to 21.11

This commit is contained in:
Tobias Happ 2021-12-05 16:24:11 +01:00 committed by Alexander Sosedkin
parent b30833b210
commit ef55157fb7
5 changed files with 13 additions and 13 deletions

View file

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