-
-
Notifications
You must be signed in to change notification settings - Fork 292
Expand file tree
/
Copy pathwith-lib.nix
More file actions
32 lines (32 loc) · 637 Bytes
/
with-lib.nix
File metadata and controls
32 lines (32 loc) · 637 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# Example to create a bios compatible gpt partition
{
disks ? [ "/dev/vdb" ],
lib,
...
}:
{
disko.devices = {
disk = lib.genAttrs disks (device: {
name = lib.replaceStrings [ "/" ] [ "_" ] device;
device = device;
type = "disk";
content = {
type = "gpt";
partitions = {
boot = {
size = "1M";
type = "EF02";
};
root = {
size = "100%";
content = {
type = "filesystem";
format = "ext4";
mountpoint = "/";
};
};
};
};
});
};
}