modules: hardware: move 'ergodox'

This commit is contained in:
Bruno BELANYI 2021-05-29 16:38:54 +02:00
parent ec1bc63de7
commit abbe1bb203
4 changed files with 3 additions and 3 deletions

View file

@ -0,0 +1,27 @@
{ config, lib, ... }:
let
cfg = config.my.networking;
in
{
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;
})
];
}