Add a partition configuration for DerGeret
This commit is contained in:
parent
af4da23427
commit
1c84649db0
1 changed files with 21 additions and 0 deletions
21
profiles/DerGeret/partition.nix
Normal file
21
profiles/DerGeret/partition.nix
Normal 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"];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue