PortValhalla/profiles/DerGeret/config.nix

21 lines
344 B
Nix
Raw Normal View History

{ ... }: {
imports = [
2024-07-07 23:47:23 +00:00
../Generic/config.nix
];
config = {
2024-07-11 17:31:50 +00:00
valhalla.partition.os.partitions = {
Boot.keepExisting = true;
Windows = {
index = 6;
label = "OS";
format = "ntfs";
mountPoint = "/win";
mountOptions = ["force"];
keepExisting = true;
};
};
};
}