diff options
author | Frankie B. <git@diskfloppy.me> | 2024-04-15 15:25:47 +0100 |
---|---|---|
committer | Frankie B. <git@diskfloppy.me> | 2024-04-15 15:25:47 +0100 |
commit | 1d21da6f0567cbbb7c9f594e7fe02327f8dc1868 (patch) | |
tree | 2330c31f86450c8e06ab1aac0cea6f5549e82576 | |
parent | 2716a9079f659f855409eb01caf6045cb953802f (diff) |
Enable bluetooth
-rw-r--r-- | hosts/watermelon/hardware-configuration.nix | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/hosts/watermelon/hardware-configuration.nix b/hosts/watermelon/hardware-configuration.nix index bf0bc0a..3ad86b2 100644 --- a/hosts/watermelon/hardware-configuration.nix +++ b/hosts/watermelon/hardware-configuration.nix @@ -13,6 +13,10 @@ boot.kernelModules = [ "kvm-intel" ]; boot.extraModulePackages = [ ]; + hardware.bluetooth.enable = true; + hardware.bluetooth.powerOnBoot = true; + services.blueman.enable = true; + fileSystems."/" = { device = "/dev/disk/by-uuid/82b7f887-2059-45ae-9bdd-60082718d922"; fsType = "ext4"; |