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-11 17:31:50 +00:00
|
|
|
valhalla.partition.os.partitions = {
|
2024-06-22 18:53:07 +00:00
|
|
|
# Keep Windows' boot partition
|
|
|
|
Boot.keepExisting = true;
|
|
|
|
|
|
|
|
Windows = {
|
|
|
|
index = 6;
|
|
|
|
label = "OS";
|
|
|
|
format = "ntfs";
|
|
|
|
size = "+600G";
|
|
|
|
mountPoint = "/win";
|
|
|
|
mountOptions = ["force"];
|
2024-06-22 20:29:31 +00:00
|
|
|
keepExisting = true;
|
2024-06-22 18:53:07 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|