[modules] add net module

This commit is contained in:
Riley Apeldoorn 2022-01-23 16:02:42 +01:00
parent af241e254d
commit 382aaab2b7
2 changed files with 14 additions and 0 deletions

5
modules/net/README.md Normal file
View File

@ -0,0 +1,5 @@
# `net` module
The `net` module defines an extended configuration interface for
networking: wifi (`net/wifi`), ethernet (`net/wire`) and bluetooth
(`net/blue`).

9
modules/net/default.nix Normal file
View File

@ -0,0 +1,9 @@
{ config, pkgs, lib, ... }:
{
imports = [
./blue # Bluetooth
./wifi # Wireless
./wire # Ethernet
];
}