README: add (home|state)Version to example config

This commit is contained in:
Alexander Sosedkin 2020-11-04 02:05:00 +07:00
parent e1632229e2
commit 0703f6ceb9

View file

@ -88,11 +88,17 @@ To enable `home-manager` you simply need to follow the instructions already prov
{ pkgs, ... }: { pkgs, ... }:
{ {
# Read nix-on-droid changelog before changing this value
system.stateVersion = "20.09";
# insert nix-on-droid config # insert nix-on-droid config
home-manager.config = home-manager.config =
{ pkgs, ... }: { pkgs, ... }:
{ {
# Read home-manager changelog before changing this value
home.stateVersion = "20.09";
# insert home-manager config # insert home-manager config
}; };