[modules] add net module
This commit is contained in:
parent
af241e254d
commit
382aaab2b7
2 changed files with 14 additions and 0 deletions
5
modules/net/README.md
Normal file
5
modules/net/README.md
Normal 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
9
modules/net/default.nix
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
{ config, pkgs, lib, ... }:
|
||||||
|
|
||||||
|
{
|
||||||
|
imports = [
|
||||||
|
./blue # Bluetooth
|
||||||
|
./wifi # Wireless
|
||||||
|
./wire # Ethernet
|
||||||
|
];
|
||||||
|
}
|
Loading…
Reference in a new issue