all repos — nixfiles @ 82eac6549fe01ecd4b8aec799f1dba37eb253ecd

System and user configuration, managed by nix and home-manager

Extract bluetooth settings from laptop module
Alan Pearce alan@alanpearce.eu
Tue, 12 Jan 2021 17:01:45 +0100
commit

82eac6549fe01ecd4b8aec799f1dba37eb253ecd

parent

2ad5213fbb065d59e8435669f71b054bd9fd52f5

A system/settings/hardware/bluetooth-audio.nix
@@ -0,0 +1,14 @@+{ config, pkgs, ... }:
+
+{
+  hardware = {
+    bluetooth = {
+      package = pkgs.bluezFull;
+    };
+    pulseaudio = {
+      extraModules = with pkgs; [
+        pulseaudio-modules-bt
+      ];
+    };
+  };
+}
A system/settings/hardware/bluetooth.nix
@@ -0,0 +1,19 @@+{ config, pkgs, ... }:
+
+{
+  hardware = {
+    bluetooth = {
+      enable = true;
+      powerOnBoot = false;
+    };
+  };
+  systemd.services.bluetooth.restartIfChanged = false;
+
+  environment.systemPackages = with pkgs; [
+    bluez-tools
+  ];
+
+  services.blueman = {
+    enable = true;
+  };
+}
M system/settings/hardware/laptop.nixsystem/settings/hardware/laptop.nix
@@ -1,23 +1,14 @@ { config, pkgs, lib, ... }:
 
-{ boot.kernelModules = [ "coretemp" ];
+{
+  imports = [
+    ./bluetooth.nix
+    ./bluetooth-audio.nix
+  ];
 
-  hardware = {
-    bluetooth = {
-      enable = true;
-      powerOnBoot = false;
-      package = pkgs.bluezFull;
-    };
-    pulseaudio = {
-      extraModules = with pkgs; [
-        pulseaudio-modules-bt
-      ];
-    };
-  };
-  systemd.services.bluetooth.restartIfChanged = false;
+  boot.kernelModules = [ "coretemp" ];
 
   environment.systemPackages = with pkgs; [
-    bluez-tools
 
     powerstat
     powertop
@@ -65,10 +56,6 @@       SOUND_POWER_SAVE_ON_AC=60
       DEVICES_TO_DISABLE_ON_BAT_NOT_IN_USE="bluetooth wwan"
     '';
-  };
-
-  services.blueman = {
-    enable = true;
   };
 
   services.xserver = {