From 0703f6ceb975af1acf2b3fc420fc7e6f8a4f716b Mon Sep 17 00:00:00 2001 From: Alexander Sosedkin Date: Wed, 4 Nov 2020 02:05:00 +0700 Subject: [PATCH] README: add (home|state)Version to example config --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index 9969517..9d90a31 100644 --- a/README.md +++ b/README.md @@ -88,11 +88,17 @@ To enable `home-manager` you simply need to follow the instructions already prov { pkgs, ... }: { + # Read nix-on-droid changelog before changing this value + system.stateVersion = "20.09"; + # insert nix-on-droid config home-manager.config = { pkgs, ... }: { + # Read home-manager changelog before changing this value + home.stateVersion = "20.09"; + # insert home-manager config };