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 = {
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;
};
};
};
};