desktop/niri: blueman

Signed-off-by: unexplrd <unexplrd@linerds.us>
This commit is contained in:
2025-06-29 17:38:46 +03:00
parent 547e41d3f9
commit 67009df2a9
2 changed files with 7 additions and 2 deletions

View File

@ -1,10 +1,12 @@
{ {
getExe, getExe,
lockscreen,
osConfig,
perSystem, perSystem,
pkgs, pkgs,
lockscreen,
... ...
}: { }: {
blueman-applet.enable = osConfig.services.blueman.enable;
swaync = import ./swaync; swaync = import ./swaync;
kanshi = import ./kanshi; kanshi = import ./kanshi;
network-manager-applet.enable = true; network-manager-applet.enable = true;

View File

@ -24,7 +24,10 @@ in {
pam.services.gtklock = {}; pam.services.gtklock = {};
soteria.enable = true; # polkit agent in rust soteria.enable = true; # polkit agent in rust
}; };
services.gvfs.enable = true; services = {
blueman.enable = config.hardware.bluetooth.enable;
gvfs.enable = true;
};
xdg.portal = { xdg.portal = {
enable = true; enable = true;
extraPortals = with pkgs; [xdg-desktop-portal-gnome xdg-desktop-portal-gtk]; extraPortals = with pkgs; [xdg-desktop-portal-gnome xdg-desktop-portal-gtk];