diff options
author | Steven Roose | 2020-12-07 13:32:27 +0000 |
---|---|---|
committer | notgne2 | 2020-12-07 17:17:14 -0700 |
commit | dc466f26889f72feb25e94248ff96b3a3ca3e7e0 (patch) | |
tree | 7fb14a0404592d55d0e593835ea006fddcb15898 /README.md | |
parent | 05d21e0b66bf7f92eddd5b858e76f3caceebd2e0 (diff) |
README: Fix example
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -68,10 +68,10 @@ A basic example of a flake that works with `deploy-rs` and deploys a simple NixO user = "root"; path = deploy-rs.lib.x86_64-linux.activate.nixos self.nixosConfigurations.some-random-system; }; - }; - # This is highly advised, and will prevent many possible mistakes - checks = builtins.mapAttrs (system: deployLib: deployLib.deployChecks self.deploy) deploy-rs.lib; + # This is highly advised, and will prevent many possible mistakes + checks = builtins.mapAttrs (system: deployLib: deployLib.deployChecks self.deploy) deploy-rs.lib; + }; } ``` |