2024-06-22 18:53:07 +00:00
|
|
|
{ ... }: {
|
|
|
|
imports = [
|
|
|
|
../../lib/modules/partition.nix
|
|
|
|
];
|
|
|
|
|
|
|
|
config = {
|
|
|
|
partition.os.partitions = {
|
|
|
|
# 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
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|