diff options
author | Jon Santmyer <jon@jonsantmyer.com> | 2023-09-23 15:57:37 -0400 |
---|---|---|
committer | Jon Santmyer <jon@jonsantmyer.com> | 2023-09-23 15:57:37 -0400 |
commit | 58eee0458fe2c6976a3982c5b9a3e4919f13adcb (patch) | |
tree | dd427e5e4d1d791696421a60b23537a6c32c8083 /systems/jonbox | |
parent | f4e995cebe8c9530a16db01b8385eadb1cab405c (diff) | |
download | nix-config-58eee0458fe2c6976a3982c5b9a3e4919f13adcb.tar.gz nix-config-58eee0458fe2c6976a3982c5b9a3e4919f13adcb.tar.bz2 nix-config-58eee0458fe2c6976a3982c5b9a3e4919f13adcb.zip |
move bluetooth into generic config. add bluetooth support for headphones
Diffstat (limited to 'systems/jonbox')
-rw-r--r-- | systems/jonbox/default.nix | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/systems/jonbox/default.nix b/systems/jonbox/default.nix index 0f53a7a..cf641f5 100644 --- a/systems/jonbox/default.nix +++ b/systems/jonbox/default.nix @@ -5,6 +5,7 @@ [ # Include the results of the hardware scan. (modulesPath + "/installer/scan/not-detected.nix") ./filesystem.nix + ../bluetooth.nix ]; nixpkgs.config.allowUnfreePredicate = pkg: @@ -39,9 +40,6 @@ package = config.boot.kernelPackages.nvidiaPackages.stable; }; - hardware.bluetooth.enable = true; - services.blueman.enable = true; - programs.light.enable = true; nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux"; |