aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorSteven Roose2020-12-07 13:32:27 +0000
committernotgne22020-12-07 17:17:14 -0700
commitdc466f26889f72feb25e94248ff96b3a3ca3e7e0 (patch)
tree7fb14a0404592d55d0e593835ea006fddcb15898 /README.md
parent05d21e0b66bf7f92eddd5b858e76f3caceebd2e0 (diff)
README: Fix example
Diffstat (limited to 'README.md')
-rw-r--r--README.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/README.md b/README.md
index 2514d7b..a9f1426 100644
--- a/README.md
+++ b/README.md
@@ -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;
+ };
}
```