From 1c84649db03405cc088fe88fc82c5c16ce10a0a5 Mon Sep 17 00:00:00 2001 From: Manuel Thalmann Date: Sat, 22 Jun 2024 20:53:07 +0200 Subject: [PATCH] Add a partition configuration for `DerGeret` --- profiles/DerGeret/partition.nix | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 profiles/DerGeret/partition.nix diff --git a/profiles/DerGeret/partition.nix b/profiles/DerGeret/partition.nix new file mode 100644 index 00000000..7cb9641f --- /dev/null +++ b/profiles/DerGeret/partition.nix @@ -0,0 +1,21 @@ +{ ... }: { + imports = [ + ../../lib/modules/partition.nix + ]; + + config = { + partition.os.partitions = { + # Keep Windows' boot partition + Boot.keepExisting = true; + + Windows = { + index = 6; + label = "OS"; + format = "ntfs"; + size = "+600G"; + mountPoint = "/win"; + mountOptions = ["force"]; + }; + }; + }; +}