10 lines
187 B
Nix
10 lines
187 B
Nix
{ lib, ... }: {
|
|
options = {
|
|
networkPrefix = lib.mkOption {
|
|
type = lib.types.str;
|
|
example = "10.42";
|
|
description = "First two octets of the network";
|
|
};
|
|
};
|
|
}
|