system/bluetooth: init

This commit is contained in:
LavaDesu 2024-01-17 15:37:48 +07:00
parent 2602b8bc1c
commit 1ba66868be
Signed by: cilly
GPG key ID: 6500251E087653C9
2 changed files with 7 additions and 0 deletions

View file

@ -27,6 +27,7 @@ in {
system = mkAttrsFromPaths [
./system/audio.nix
./system/base.nix
./system/bluetooth.nix
./system/ccache.nix
./system/corectrl.nix
./system/flatpak.nix

View file

@ -0,0 +1,6 @@
{ ... }: {
hardware.bluetooth = {
enable = true;
powerOnBoot = true;
};
}