From a48e27185312a128265337eddf6b564c522a92ad Mon Sep 17 00:00:00 2001 From: kalipso Date: Mon, 17 Mar 2025 16:02:51 +0100 Subject: [PATCH] [docs] rm outdated --- doc/src/anleitung/create.md | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/doc/src/anleitung/create.md b/doc/src/anleitung/create.md index 948eeb2..e6bf894 100644 --- a/doc/src/anleitung/create.md +++ b/doc/src/anleitung/create.md @@ -21,18 +21,3 @@ Testing disko partitioning is working quite well. Just run the following and che ```bash nix run -L .\#nixosConfigurations.fanny.config.system.build.vmWithDisko ``` - -Only problem is that encryption is not working, so it needs to be commented out. For testing host fanny the following parts in ```./machines/modules/disko/fanny.nix``` need to be commented out(for both pools!): -```nix -datasets = { - encrypted = { - options = { - encryption = "aes-256-gcm"; #THIS ONE - keyformat = "passphrase"; #THIS ONE - keylocation = "file:///tmp/root.key"; #THIS ONE - }; - # use this to read the key during boot - postCreateHook = '' #THIS ONE - zfs set keylocation="prompt" "zroot/$name"; #THIS ONE - ''; #THIS ONE -```