modules: networking: add 'wireless' option

This commit is contained in:
Bruno BELANYI 2021-05-05 12:27:07 +02:00
parent 8755d84b21
commit 8013120856
1 changed files with 24 additions and 10 deletions

View File

@ -1,13 +1,27 @@
{ lib, ... }:
{ config, lib, ... }:
let
cfg = config.my.networking;
in
{
options.my.networking.externalInterface = with lib; mkOption {
type = types.nullOr types.str;
default = null;
example = "eth0";
description = ''
Name of the network interface that egresses to the internet. Used for
e.g. NATing internal networks.
'';
options.my.networking = with lib; {
externalInterface = mkOption {
type = types.nullOr types.str;
default = null;
example = "eth0";
description = ''
Name of the network interface that egresses to the internet. Used for
e.g. NATing internal networks.
'';
};
wireless = {
enable = mkEnableOption "wireless configuration";
};
};
config = lib.mkMerge [
(lib.mkIf cfg.wireless.enable {
networking.networkmanager.enable = true;
})
];
}