blob: 64982ed78ea8bb0faa7357505db9fd727b87d7c0 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
{lib, ...}: {
options.sils.meta = {
bootPart = lib.mkOption {
type = lib.types.str;
};
bootstrapSystem = lib.mkEnableOption;
hostname = lib.mkOption {
type = lib.types.str;
};
mainDisk = lib.mkOption {
type = lib.types.str;
};
rootPart = lib.mkOption {
type = lib.types.str;
};
system = lib.mkOption {
type = lib.types.str;
};
};
}
|