structure and add like MatthiasBenaets

This commit is contained in:
2022-09-17 16:50:50 +02:00
parent 4065bc1e26
commit e454d95a99
30 changed files with 1791 additions and 229 deletions

View File

@@ -0,0 +1,17 @@
#
# Bluetooth
#
{ pkgs, ... }:
{
hardware.bluetooth = {
enable = true;
hsphfpd.enable = true; # HSP & HFP daemon
settings = {
General = {
Enable = "Source,Sink,Media,Socket";
};
};
};
}

View File

@@ -0,0 +1,15 @@
#
# Hardware
#
# flake.nix
# ├─ ./hosts
# │ └─ ./<host>
# │ └─ default.nix
# └─ ./modules
# └─ ./services
# └─ default.nix *
# └─ ...
#
[
./bluetooth.nix
]