forked from kclejeune/system
-
Notifications
You must be signed in to change notification settings - Fork 0
/
disk-config.nix
43 lines (43 loc) · 924 Bytes
/
disk-config.nix
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
33
34
35
36
37
38
39
40
41
42
43
{
disks ? [ "/dev/vda" ],
...
}:
{
disko.devices = {
disk = {
sda = {
device = builtins.elemAt disks 0;
type = "disk";
content = {
type = "table";
format = "gpt";
partitions = [
{
name = "ESP";
start = "1MiB";
end = "500MiB";
type = "EF00";
bootable = true;
content = {
type = "filesystem";
format = "vfat";
mountpoint = "/boot";
};
}
{
name = "nixos";
start = "500MiB";
end = "100%";
part-type = "primary";
content = {
type = "filesystem";
format = "ext4";
mountpoint = "/";
};
}
];
};
};
};
};
}