PortValhalla/profiles/DerGeret/partition.nix

22 lines
369 B
Nix
Raw Normal View History

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