Configure Windows on DerGeret

This commit is contained in:
Manuel Thalmann 2024-07-28 17:14:38 +02:00
parent 0e3fa63f90
commit 7d23d1d0e2

View file

@ -4,17 +4,26 @@
];
config = {
valhalla.partition.os.partitions = {
# Keep Windows' boot partition
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 = {
# Keep Windows' boot partition
Boot.keepExisting = true;
Windows = {
index = 6;
label = "OS";
format = "ntfs";
mountPoint = "/win";
mountOptions = ["force"];
keepExisting = true;
};
};
};
};