bluetooth: separated into new file

This commit is contained in:
2026-05-17 09:06:34 +02:00
parent a6f2973194
commit 1ceed7d7d2
2 changed files with 11 additions and 3 deletions
+10
View File
@@ -0,0 +1,10 @@
{
pkgs,
...
}:
{
hardware.bluetooth.enable = true;
environment.systemPackages = with pkgs; [
blueman # GTK-based Bluetooth Manager
];
}