Skip to content

Commit e55ffd7

Browse files
committed
README: several markdown fixes
1 parent c10febb commit e55ffd7

File tree

2 files changed

+12
-12
lines changed

2 files changed

+12
-12
lines changed

README.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -68,15 +68,15 @@ data has been migrated.
6868

6969
- Unless you're using the option to boot from a NixOS installer image, or
7070
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
7373
perform kexec for other architectures eg aarch64
7474
- Must have at least 1.5 GB of RAM, excluding swap.
7575

7676
## How to use nixos-anywhere
7777

7878
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).
8080

8181
The tool doesn't need to be installed, since it can be run directly from this
8282
repository.
@@ -148,10 +148,10 @@ A simple flake may look like this:
148148
inputs.disko.url = github:nix-community/disko;
149149
inputs.disko.inputs.nixpkgs.follows = "nixpkgs";
150150
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+
#-----------------------------------------------------------
155155
nixosConfigurations.hetzner-cloud = nixpkgs.lib.nixosSystem {
156156
system = "x86_64-linux";
157157
specialArgs = attrs;
@@ -171,10 +171,10 @@ A simple flake may look like this:
171171
efiInstallAsRemovable = true;
172172
};
173173
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+
#-------------------------------------------------------
178178
users.users.root.openssh.authorizedKeys.keys = [ "<insert your key here>" ];
179179
})
180180
];

docs/SUMMARY.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
- [Introduction](./introduction.md)
44
- [What is nixos-anywhere?](#)
5-
- [Quickstart](#)
5+
- [Quickstart](./quickstart.md)
66
- [Getting Started](#)
77
- [System Requirements](#)
88
- [Support Matrix](#)

0 commit comments

Comments
 (0)