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
+1 -3
View File
@@ -26,6 +26,7 @@
../../hostsModules/laptop/nixos/autoUpdate.nix # auto update the flakes. Handles notification via libnotify and matrix-commander-rs
../../hostsModules/laptop/nixos/bootloader.nix
../../hostsModules/laptop/nixos/networking.nix # firewall, ssh, networkmanager, etc.
../../modules/nixos/bluetooth.nix
];
@@ -33,8 +34,6 @@
documentation.man.generateCaches = true; # used for the man script
hardware.bluetooth.enable = true;
qt.enable = true;
nix.nixPath = [
@@ -192,7 +191,6 @@
brightnessctl # control brightness
pulseaudio # sound server
playerctl # controls media player
blueman # GTK-based Bluetooth Manager
udiskie # removable disk automounter for udisks
cliphist # Wayland clipboard manager
wl-clipboard # cli copy/past utilities for Wayland
+10
View File
@@ -0,0 +1,10 @@
{
pkgs,
...
}:
{
hardware.bluetooth.enable = true;
environment.systemPackages = with pkgs; [
blueman # GTK-based Bluetooth Manager
];
}