diff options
author | Alan Pearce | 2019-09-05 13:09:54 +0200 |
---|---|---|
committer | Alan Pearce | 2019-09-05 13:09:54 +0200 |
commit | 721f85a77991422e43b7930e110feea14b2deb1c (patch) | |
tree | 5bf4d97726f21eb3c2ba49fcaff204faa7078eb2 /modules | |
parent | 66e0fc015b2325ac807747ea6b4c771a05c6ba63 (diff) | |
download | nixos-configuration-721f85a77991422e43b7930e110feea14b2deb1c.tar.lz nixos-configuration-721f85a77991422e43b7930e110feea14b2deb1c.tar.zst nixos-configuration-721f85a77991422e43b7930e110feea14b2deb1c.zip |
laptop: Improve bluetooth setup
Diffstat (limited to 'modules')
-rw-r--r-- | modules/hardware/laptop.nix | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/modules/hardware/laptop.nix b/modules/hardware/laptop.nix index 4c76ff6..3b5aeb2 100644 --- a/modules/hardware/laptop.nix +++ b/modules/hardware/laptop.nix @@ -9,6 +9,7 @@ bluetooth = { enable = true; powerOnBoot = false; + package = pkgs.bluezFull; }; }; systemd.services.bluetooth.wantedBy = lib.mkForce []; @@ -21,6 +22,9 @@ }; environment.systemPackages = with pkgs; [ + blueman + bluez-tools + powerstat powertop |