23 lines
405 B
Nix
23 lines
405 B
Nix
{ ... }: {
|
|
imports = [
|
|
../Generic/config.nix
|
|
];
|
|
|
|
config = {
|
|
valhalla.partition.os.partitions = {
|
|
# Keep Windows' boot partition
|
|
Boot.keepExisting = true;
|
|
|
|
Windows = {
|
|
index = 6;
|
|
label = "OS";
|
|
format = "ntfs";
|
|
size = "+600G";
|
|
mountPoint = "/win";
|
|
mountOptions = ["force"];
|
|
keepExisting = true;
|
|
};
|
|
};
|
|
};
|
|
}
|