From 49e9d646c0baf33fa4129c22896636f307f35ddc Mon Sep 17 00:00:00 2001 From: Manuel Thalmann Date: Sun, 28 Jul 2024 17:14:38 +0200 Subject: [PATCH] Configure Windows on DerGeret --- profiles/DerGeret/config.nix | 27 ++++++++++++++++++--------- 1 file changed, 18 insertions(+), 9 deletions(-) diff --git a/profiles/DerGeret/config.nix b/profiles/DerGeret/config.nix index bcff7cef..09ace8cc 100644 --- a/profiles/DerGeret/config.nix +++ b/profiles/DerGeret/config.nix @@ -4,16 +4,25 @@ ]; config = { - valhalla.partition.os.partitions = { - Boot.keepExisting = true; + valhalla = { + windows = { + dualboot = { + enable = true; + linuxPercentage = 70; # better safe than sorry + }; + }; - Windows = { - index = 6; - label = "OS"; - format = "ntfs"; - mountPoint = "/win"; - mountOptions = ["force"]; - keepExisting = true; + partition.os.partitions = { + Boot.keepExisting = true; + + Windows = { + index = 6; + label = "OS"; + format = "ntfs"; + mountPoint = "/win"; + mountOptions = ["force"]; + keepExisting = true; + }; }; }; };