From cb37b199412aa2038eca2a6e28b86cc4593cc5ed Mon Sep 17 00:00:00 2001 From: Weckyy702 Date: Thu, 19 Mar 2026 21:33:48 +0100 Subject: [PATCH] hosts/tux: Add blueman and blueman-applet --- modules/hosts/tux/tux.nix | 3 ++- modules/hosts/tux/users/weckyy702/bluetooth.nix | 5 +++++ modules/hosts/tux/users/weckyy702/weckyy702.nix | 1 + modules/system-settings/bluetooth.nix | 3 ++- 4 files changed, 10 insertions(+), 2 deletions(-) create mode 100644 modules/hosts/tux/users/weckyy702/bluetooth.nix diff --git a/modules/hosts/tux/tux.nix b/modules/hosts/tux/tux.nix index 5bddb82..256f0c3 100644 --- a/modules/hosts/tux/tux.nix +++ b/modules/hosts/tux/tux.nix @@ -4,11 +4,12 @@ with inputs.self.factory; [ system-desktop systemd-boot + bluetooth + i18n-de (autologin "weckyy702") development-tools - i18n-de tailscale #TODO: laptop specific aspects like powertop diff --git a/modules/hosts/tux/users/weckyy702/bluetooth.nix b/modules/hosts/tux/users/weckyy702/bluetooth.nix new file mode 100644 index 0000000..a3e55cf --- /dev/null +++ b/modules/hosts/tux/users/weckyy702/bluetooth.nix @@ -0,0 +1,5 @@ +{ inputs, ... }: { + flake.modules.homeManager.blueman-applet = { + services.blueman-applet.enable = true; + }; +} diff --git a/modules/hosts/tux/users/weckyy702/weckyy702.nix b/modules/hosts/tux/users/weckyy702/weckyy702.nix index 6ee1614..772945c 100644 --- a/modules/hosts/tux/users/weckyy702/weckyy702.nix +++ b/modules/hosts/tux/users/weckyy702/weckyy702.nix @@ -14,6 +14,7 @@ tux-hyprland randomized-aghpb-wallpaper nm-applet + blueman-applet ]; }; }; diff --git a/modules/system-settings/bluetooth.nix b/modules/system-settings/bluetooth.nix index 258fad3..e55cabd 100644 --- a/modules/system-settings/bluetooth.nix +++ b/modules/system-settings/bluetooth.nix @@ -2,7 +2,8 @@ flake.modules.nixos.bluetooth = { hardware.bluetooth = { enable = true; - }; + + services.blueman.enable = true; }; }