10 lines
111 B
Nix
10 lines
111 B
Nix
|
{ config, pkgs, lib, ... }:
|
||
|
|
||
|
{
|
||
|
imports = [
|
||
|
./blue # Bluetooth
|
||
|
./wifi # Wireless
|
||
|
./wire # Ethernet
|
||
|
];
|
||
|
}
|