PortValhalla/profiles/DerGeret/config.nix

22 lines
359 B
Nix

{ ... }: {
imports = [
../Generic/config.nix
];
config = {
partition.os.partitions = {
Boot.keepExisting = true;
Windows = {
index = 6;
label = "OS";
format = "ntfs";
size = "+600G";
mountPoint = "/win";
mountOptions = ["force"];
keepExisting = true;
};
};
};
}