blob: 3dd0a74cdaaeaea50e59cfacee6ffbec3c0da553 (
plain)
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
|
{ config, lib, ... }:
let
spec = {
disko.devices = {
disk = {
main = {
device = config.monorepo.vars.device;
type = "disk";
content = {
type = "gpt";
partitions = {
boot = {
size = "1M";
type = "EF02";
};
root = {
label = "disk-main-root";
size = "100%";
content = {
type = "filesystem";
format = "ext4";
mountpoint = "/";
};
};
};
};
};
};
};
};
in
{
monorepo.vars.diskoSpec = spec;
disko.devices = spec.disko.devices;
}
|