aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
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;
+ };
}
```