15 lines
280 B
Nix
15 lines
280 B
Nix
{lib, ...}:
|
|
with lib; {
|
|
# Declare what settings a user of this "hello.nix" module CAN SET.
|
|
options.services.vpn-ip = {
|
|
ip = mkOption {
|
|
type = types.str;
|
|
default = "0";
|
|
};
|
|
publicKey = mkOption {
|
|
type = types.str;
|
|
default = "";
|
|
};
|
|
};
|
|
}
|