Files
nix-config/hosts/thor/bluetooth.nix
2024-04-24 11:26:05 +02:00

22 lines
250 B
Nix

{
inputs,
outputs,
lib,
config,
pkgs,
...
}: {
hardware.bluetooth = {
enable = true;
powerOnBoot = true;
settings = {
General = {
Experimental = true;
};
};
};
services.blueman.enable = true;
}