Add a partition configuration for DerGeret

This commit is contained in:
Manuel Thalmann 2024-06-22 20:53:07 +02:00
parent f576d4ae6e
commit be0031159c

View file

@ -0,0 +1,20 @@
{ ... }: {
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"];
};
};
};
}