Add a partition configuration for DerGeret

This commit is contained in:
Manuel Thalmann 2024-06-22 20:53:07 +02:00
parent af4da23427
commit 1c84649db0

View file

@ -0,0 +1,21 @@
{ ... }: {
imports = [
../../lib/modules/partition.nix
];
config = {
partition.os.partitions = {
# Keep Windows' boot partition
Boot.keepExisting = true;
Windows = {
index = 6;
label = "OS";
format = "ntfs";
size = "+600G";
mountPoint = "/win";
mountOptions = ["force"];
};
};
};
}