Configure Windows on DerGeret

This commit is contained in:
Manuel Thalmann 2024-07-28 17:14:38 +02:00
parent b5e798564b
commit 1a0b63a181

View file

@ -4,16 +4,25 @@
]; ];
config = { config = {
valhalla.partition.os.partitions = { valhalla = {
Boot.keepExisting = true; windows = {
dualboot = {
enable = true;
linuxPercentage = 70; # better safe than sorry
};
};
Windows = { partition.os.partitions = {
index = 6; Boot.keepExisting = true;
label = "OS";
format = "ntfs"; Windows = {
mountPoint = "/win"; index = 6;
mountOptions = ["force"]; label = "OS";
keepExisting = true; format = "ntfs";
mountPoint = "/win";
mountOptions = ["force"];
keepExisting = true;
};
}; };
}; };
}; };