dotfiles/system/hosts/router/options.nix

20 lines
320 B
Nix
Raw Normal View History

2023-06-20 15:11:01 +07:00
{ lib
, ... }:
{
options.router-settings = {
country_code = lib.mkOption {
type = lib.types.str;
};
network = lib.mkOption {
type = lib.types.str;
};
ssid = lib.mkOption {
type = lib.types.str;
};
wpa_passphrase = lib.mkOption {
type = lib.types.str;
};
};
}