README.md: comment install-to-hd by default out

otherwise people might accidentally loose data.
This commit is contained in:
Jörg Thalheim 2019-09-16 10:51:13 +01:00
parent beda422c5f
commit 1eb200a050
No known key found for this signature in database
GPG Key ID: B3F5D81B0C6967C4

View File

@ -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";
# };
#};
}
```