File tree 1 file changed +7
-4
lines changed
1 file changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -75,9 +75,12 @@ A basic example of a flake that works with `deploy-rs` and deploys a simple NixO
75
75
modules = [ ./some-random-system/configuration.nix ];
76
76
};
77
77
78
- deploy.nodes.some-random-system.profiles.system = {
79
- user = "root";
80
- path = deploy-rs.lib.x86_64-linux.activate.nixos self.nixosConfigurations.some-random-system;
78
+ deploy.nodes.some-random-system = {
79
+ hostname = "some-random-system";
80
+ profiles.system = {
81
+ user = "root";
82
+ path = deploy-rs.lib.x86_64-linux.activate.nixos self.nixosConfigurations.some-random-system;
83
+ };
81
84
};
82
85
83
86
# This is highly advised, and will prevent many possible mistakes
@@ -214,7 +217,7 @@ This is a set of options that can be put in any of the above definitions, with t
214
217
# (if `magicRollback` is in use, this _must_ be writable by `user`)
215
218
tempPath = "/home/someuser/.deploy-rs";
216
219
217
- # Build the derivation on the target system.
220
+ # Build the derivation on the target system.
218
221
# Will also fetch all external dependencies from the target system's substituters.
219
222
# This default to `false`
220
223
remoteBuild = true;
You can’t perform that action at this time.
0 commit comments