diff --git a/hosts/laptop/configuration.nix b/hosts/laptop/configuration.nix index e7d5c08..521c8a7 100755 --- a/hosts/laptop/configuration.nix +++ b/hosts/laptop/configuration.nix @@ -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 diff --git a/modules/nixos/bluetooth.nix b/modules/nixos/bluetooth.nix new file mode 100644 index 0000000..9892a08 --- /dev/null +++ b/modules/nixos/bluetooth.nix @@ -0,0 +1,10 @@ +{ + pkgs, + ... +}: +{ + hardware.bluetooth.enable = true; + environment.systemPackages = with pkgs; [ + blueman # GTK-based Bluetooth Manager + ]; +}