diff options
author | Adrian Kummerlaender | 2019-03-04 09:48:35 +0100 |
---|---|---|
committer | Adrian Kummerlaender | 2019-03-04 09:48:45 +0100 |
commit | 0bb31306dd43eeaed0ca0574bd5ced839afe8ea7 (patch) | |
tree | 7a01b143b625556bb41326e1dbc84b24a9d9304c | |
parent | d27f8fb0704add84c765113b03ca1f2b73212856 (diff) | |
download | nixos_system-0bb31306dd43eeaed0ca0574bd5ced839afe8ea7.tar nixos_system-0bb31306dd43eeaed0ca0574bd5ced839afe8ea7.tar.gz nixos_system-0bb31306dd43eeaed0ca0574bd5ced839afe8ea7.tar.bz2 nixos_system-0bb31306dd43eeaed0ca0574bd5ced839afe8ea7.tar.lz nixos_system-0bb31306dd43eeaed0ca0574bd5ced839afe8ea7.tar.xz nixos_system-0bb31306dd43eeaed0ca0574bd5ced839afe8ea7.tar.zst nixos_system-0bb31306dd43eeaed0ca0574bd5ced839afe8ea7.zip |
Enable bluetooth on athena
-rw-r--r-- | host/athena.nix | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/host/athena.nix b/host/athena.nix index cc007ec..cc9c80d 100644 --- a/host/athena.nix +++ b/host/athena.nix @@ -53,11 +53,13 @@ speed = 250; }; + hardware.bluetooth.enable = true; + services.tlp = { enable = true; extraConfig = '' RESTORE_DEVICE_STATE_ON_STARTUP=1 - DEVICES_TO_DISABLE_ON_STARTUP="bluetooth wwan" + DEVICES_TO_DISABLE_ON_STARTUP="wwan" ''; }; |