From 4781ff2c0a28b87b393e11db2252fa249e78cb42 Mon Sep 17 00:00:00 2001 From: Adrian Hesketh Date: Tue, 19 Sep 2023 12:08:44 +0100 Subject: [PATCH] docs: add missing attribute to example --- README.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 2fd4268..74b79f8 100644 --- a/README.md +++ b/README.md @@ -57,6 +57,8 @@ A simple System Manager module could look something like this: { config = { + nixpkgs.hostPlatform = "x86_64-linux"; + environment = { etc = { "foo.conf".text = '' @@ -66,6 +68,7 @@ A simple System Manager module could look something like this: systemPackages = [ pkgs.ripgrep pkgs.fd + pkgs.hello ]; }; @@ -78,7 +81,7 @@ A simple System Manager module could look something like this: }; wantedBy = [ "system-manager.target" ]; script = '' - ${lib.getBin pkgs.foo}/bin/foo + ${lib.getBin pkgs.hello}/bin/hello echo "We launched the rockets!" ''; };