From 7ed3b9ad795e187b86e7250c943b38f40c561933 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Thalheim?= Date: Mon, 16 Sep 2019 10:52:23 +0100 Subject: README.md: put tsp-disk.json before configuration.nix This is imho the more important configuration of this tool. The configuration.nix is just necessary boiler code. --- README.md | 49 +++++++++++++++++++++++++------------------------ 1 file changed, 25 insertions(+), 24 deletions(-) (limited to 'README.md') diff --git a/README.md b/README.md index 19ae9b0..c28b40a 100644 --- a/README.md +++ b/README.md @@ -10,6 +10,31 @@ Master Boot Record ------------------ This is how your iso configuation may look like +/etc/nixos/tsp-disk.json (TODO: find the correct disk) +```json +{ + "type": "devices", + "content": { + "sda": { + "type": "table", + "format": "msdos", + "partitions": [{ + "type": "partition", + "start": "1M", + "end": "100%", + "bootable": true, + "content": { + "type": "filesystem", + "format": "ext4", + "mountpoint": "/" + } + }] + } + } +} +``` + +/etc/nixos/configuration.nix ```nix { pkgs, ... }: let @@ -26,30 +51,6 @@ in { (pkgs.writeScriptBin "tsp-create" (disko.mount cfg)) (pkgs.writeScriptBin "tsp-mount" (disko.mount cfg)) ]; -} -``` -tsp-disk.json (TODO: find the correct disk) -```json -{ - "type": "devices", - "content": { - "sda": { - "type": "table", - "format": "msdos", - "partitions": [ - { "type": "partition", - "start": "1M", - "end": "100%", - "bootable": true, - "content": { - "type": "filesystem", - "format": "ext4", - "mountpoint": "/" - } - } - ] - } - } ## Optional: Automatically creates a service which runs at startup to perform the partitioning #systemd.services.install-to-hd = { # enable = true; -- cgit v1.2.3