clean up and refactor more into OS snippets; bluetooth works on x13s

This commit is contained in:
steveej 2024-01-24 00:24:04 +00:00
parent 13dcb13bac
commit faf0818e00
27 changed files with 367 additions and 461 deletions

View file

@ -0,0 +1,9 @@
{ pkgs
, lib
, ...
}: {
# required for running blueman-applet in user sessions
services.dbus.packages = with pkgs; [ blueman ];
hardware.bluetooth.enable = true;
services.blueman.enable = true;
}