2024-06-22 18:53:07 +00:00
|
|
|
{ ... }: {
|
|
|
|
imports = [
|
2024-07-07 23:47:23 +00:00
|
|
|
../Generic/config.nix
|
2024-06-22 18:53:07 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
config = {
|
2024-07-28 15:14:38 +00:00
|
|
|
valhalla = {
|
|
|
|
windows = {
|
|
|
|
dualboot = {
|
|
|
|
enable = true;
|
|
|
|
linuxPercentage = 70; # better safe than sorry
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
partition.os.partitions = {
|
|
|
|
# Keep Windows' boot partition
|
|
|
|
Boot.keepExisting = true;
|
2024-06-22 18:53:07 +00:00
|
|
|
|
2024-07-28 15:14:38 +00:00
|
|
|
Windows = {
|
|
|
|
index = 6;
|
|
|
|
label = "OS";
|
|
|
|
format = "ntfs";
|
|
|
|
mountPoint = "/win";
|
|
|
|
mountOptions = ["force"];
|
|
|
|
keepExisting = true;
|
|
|
|
};
|
2024-06-22 18:53:07 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|