@@ -68,15 +68,15 @@ data has been migrated.
68
68
69
69
- Unless you're using the option to boot from a NixOS installer image, or
70
70
providing your own ` kexec ` image, it must be running x86-64 Linux with kexec
71
- support. Most x86_64 Linux systems do have kexec support. By providing your
72
- own [ image] ( ./docs/howtos.md#using-your-own-kexec-image ) you can also
71
+ support. Most ` x86_64 ` Linux systems do have kexec support. By providing
72
+ your own [ image] ( ./docs/howtos.md#using-your-own-kexec-image ) you can also
73
73
perform kexec for other architectures eg aarch64
74
74
- Must have at least 1.5 GB of RAM, excluding swap.
75
75
76
76
## How to use nixos-anywhere
77
77
78
78
Here’s a quick summary of how to use ** nixos-anywhere** . You can find more
79
- information in the [ product documentation] ( ./docs ) .
79
+ information in the [ documentation] ( ./docs ) .
80
80
81
81
The tool doesn't need to be installed, since it can be run directly from this
82
82
repository.
@@ -148,10 +148,10 @@ A simple flake may look like this:
148
148
inputs.disko.url = github:nix-community/disko;
149
149
inputs.disko.inputs.nixpkgs.follows = "nixpkgs";
150
150
outputs = { self, nixpkgs, disko, ... }@attrs: {
151
- #-----------------------------------------------------------
152
- # The following line names the configuration as hetzner-cloud
153
- # This name will be referenced when nixos-remote is run
154
- #-----------------------------------------------------------
151
+ #-----------------------------------------------------------
152
+ # The following line names the configuration as hetzner-cloud
153
+ # This name will be referenced when nixos-remote is run
154
+ #-----------------------------------------------------------
155
155
nixosConfigurations.hetzner-cloud = nixpkgs.lib.nixosSystem {
156
156
system = "x86_64-linux";
157
157
specialArgs = attrs;
@@ -171,10 +171,10 @@ A simple flake may look like this:
171
171
efiInstallAsRemovable = true;
172
172
};
173
173
services.openssh.enable = true;
174
- #-------------------------------------------------------
175
- # Change the line below replacing <insert your key here>
176
- # with your own ssh public key
177
- #-------------------------------------------------------
174
+ #-------------------------------------------------------
175
+ # Change the line below replacing <insert your key here>
176
+ # with your own ssh public key
177
+ #-------------------------------------------------------
178
178
users.users.root.openssh.authorizedKeys.keys = [ "<insert your key here>" ];
179
179
})
180
180
];
0 commit comments