From dc0c387628d42704d2fa55f034c1d5b4aa5e7c16 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Thalheim?= Date: Wed, 17 Aug 2022 15:28:24 +0200 Subject: README: fix the example --- README.md | 52 ++++++++++++++++++++++++---------------------------- 1 file changed, 24 insertions(+), 28 deletions(-) (limited to 'README.md') diff --git a/README.md b/README.md index 192129e..3bfe83f 100644 --- a/README.md +++ b/README.md @@ -10,39 +10,35 @@ 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, modulesPath, ... }: let - disko = builtins.fetchGit { - url = https://cgit.lassul.us/disko/; - rev = "88f56a0b644dd7bfa8438409bea5377adef6aef4"; + disko = pkgs.callPackage (builtins.fetchGit { + url = "https://github.com/nix-community/disko"; + ref = "master"; + }) {}; + cfg = { + type = "devices"; + content = { + sda = { + type = "table"; + format = "msdos"; + partitions = [{ + type = "partition"; + part-type = "primary"; + start = "1M"; + end = "100%"; + bootable = true; + content = { + type = "filesystem"; + format = "ext4"; + mountpoint = "/"; + }; + }]; + }; + }; }; - cfg = builtins.fromJSON ./tsp-disk.json; in { imports = [ (modulesPath + "/installer/cd-dvd/installation-cd-minimal.nix") -- cgit v1.2.3