Configure Windows on DerGeret
This commit is contained in:
parent
4fe0ecfe95
commit
a764594e3e
1 changed files with 19 additions and 10 deletions
|
@ -4,17 +4,26 @@
|
||||||
];
|
];
|
||||||
|
|
||||||
config = {
|
config = {
|
||||||
valhalla.partition.os.partitions = {
|
valhalla = {
|
||||||
# Keep Windows' boot partition
|
windows = {
|
||||||
Boot.keepExisting = true;
|
dualboot = {
|
||||||
|
enable = true;
|
||||||
|
linuxPercentage = 70; # better safe than sorry
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
Windows = {
|
partition.os.partitions = {
|
||||||
index = 6;
|
# Keep Windows' boot partition
|
||||||
label = "OS";
|
Boot.keepExisting = true;
|
||||||
format = "ntfs";
|
|
||||||
mountPoint = "/win";
|
Windows = {
|
||||||
mountOptions = ["force"];
|
index = 6;
|
||||||
keepExisting = true;
|
label = "OS";
|
||||||
|
format = "ntfs";
|
||||||
|
mountPoint = "/win";
|
||||||
|
mountOptions = ["force"];
|
||||||
|
keepExisting = true;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue