Enable bluetooth on Crow
This commit is contained in:
parent
ff2e759adf
commit
f78db2272c
2 changed files with 25 additions and 0 deletions
|
|
@ -25,4 +25,6 @@
|
||||||
|
|
||||||
networking.hostName = "crow";
|
networking.hostName = "crow";
|
||||||
networking.hostId = "0b83186c";
|
networking.hostId = "0b83186c";
|
||||||
|
|
||||||
|
services.blueman.enable = true;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -44,4 +44,27 @@
|
||||||
cmakeFlags = (old.cmakeFlags or [ ]) ++ [ "-DUSE_DBUS_MENU=0" ];
|
cmakeFlags = (old.cmakeFlags or [ ]) ++ [ "-DUSE_DBUS_MENU=0" ];
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
|
# Enable bluetooth
|
||||||
|
hardware.bluetooth = {
|
||||||
|
enable = true;
|
||||||
|
powerOnBoot = true;
|
||||||
|
settings = {
|
||||||
|
General = {
|
||||||
|
# Shows battery charge of connected devices on supported
|
||||||
|
# Bluetooth adapters. Defaults to 'false'.
|
||||||
|
Experimental = true;
|
||||||
|
# When enabled other devices can connect faster to us, however
|
||||||
|
# the tradeoff is increased power consumption. Defaults to
|
||||||
|
# 'false'.
|
||||||
|
FastConnectable = true;
|
||||||
|
};
|
||||||
|
Policy = {
|
||||||
|
# Enable all controllers when they are found. This includes
|
||||||
|
# adapters present on start as well as adapters that are plugged
|
||||||
|
# in later on. Defaults to 'true'.
|
||||||
|
AutoEnable = true;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue