Skip to content

Commit

Permalink
Merge pull request numtide#43 from a-h/main
Browse files Browse the repository at this point in the history
docs: add missing attribute to example
  • Loading branch information
r-vdp authored Sep 19, 2023
2 parents e8957ab + 4781ff2 commit ff963b3
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 = ''
Expand All @@ -66,6 +68,7 @@ A simple System Manager module could look something like this:
systemPackages = [
pkgs.ripgrep
pkgs.fd
pkgs.hello
];
};
Expand All @@ -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!"
'';
};
Expand Down

0 comments on commit ff963b3

Please sign in to comment.