feat: Added blueman applet and service

This commit is contained in:
uttarayan21
2025-06-15 14:35:39 +05:30
parent 3f6d0a421e
commit 711798a178
2 changed files with 13 additions and 0 deletions

12
home/apps/blueman.nix Normal file
View File

@@ -0,0 +1,12 @@
{
pkgs,
lib,
...
}: {
home.packages = lib.optionals pkgs.stdenv.isLinux [
pkgs.blueman
pkgs.webcord
];
# services.blueman.enable = true;
services.blueman-applet.enable = true;
}

View File

@@ -32,5 +32,6 @@ lib.optionalAttrs device.hasGui {
./rpcs3.nix ./rpcs3.nix
./pcsx2.nix ./pcsx2.nix
./seafile.nix ./seafile.nix
./blueman.nix
]; ];
} }