summaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorJörg Thalheim <joerg@thalheim.io>2019-09-16 10:51:13 +0100
committerJörg Thalheim <joerg@thalheim.io>2019-09-16 10:51:13 +0100
commit1eb200a050486485ee116d9accff813520a49483 (patch)
tree02ef1277a50567b078b4f04282878fd4390d2f3a /README.md
parentbeda422c5fa830f0ae8d4aa34a305a10166590f8 (diff)
README.md: comment install-to-hd by default out
otherwise people might accidentally loose data.
Diffstat (limited to 'README.md')
-rw-r--r--README.md26
1 files changed, 13 insertions, 13 deletions
diff --git a/README.md b/README.md
index 439ecd5..19ae9b0 100644
--- a/README.md
+++ b/README.md
@@ -26,19 +26,6 @@ in {
(pkgs.writeScriptBin "tsp-create" (disko.mount cfg))
(pkgs.writeScriptBin "tsp-mount" (disko.mount cfg))
];
- # Optional: Automatically creates a service which runs at startup to perform the partitioning
- systemd.services.install-to-hd = {
- enable = true;
- wantedBy = ["multi-user.target"];
- after = ["getty@tty1.service" ];
- serviceConfig = {
- Type = "oneshot";
- ExecStart = [ (disko.create cfg) (disk.mount cfg) ];
- StandardInput = "null";
- StandardOutput = "journal+console";
- StandardError = "inherit";
- };
- };
}
```
tsp-disk.json (TODO: find the correct disk)
@@ -63,6 +50,19 @@ tsp-disk.json (TODO: find the correct disk)
]
}
}
+ ## Optional: Automatically creates a service which runs at startup to perform the partitioning
+ #systemd.services.install-to-hd = {
+ # enable = true;
+ # wantedBy = ["multi-user.target"];
+ # after = ["getty@tty1.service" ];
+ # serviceConfig = {
+ # Type = "oneshot";
+ # ExecStart = [ (disko.create cfg) (disk.mount cfg) ];
+ # StandardInput = "null";
+ # StandardOutput = "journal+console";
+ # StandardError = "inherit";
+ # };
+ #};
}
```