From 1eb200a050486485ee116d9accff813520a49483 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Thalheim?= Date: Mon, 16 Sep 2019 10:51:13 +0100 Subject: README.md: comment install-to-hd by default out otherwise people might accidentally loose data. --- README.md | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) (limited to 'README.md') 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"; + # }; + #}; } ``` -- cgit v1.2.3