{ ... }: {
  imports = [
    ../Generic/config.nix
  ];

  config =  {
    valhalla.partition.os.partitions = {
      # Keep Windows' boot partition
      Boot.keepExisting = true;

      Windows = {
        index = 6;
        label = "OS";
        format = "ntfs";
        mountPoint = "/win";
        mountOptions = ["force"];
        keepExisting = true;
      };
    };
  };
}