dot

NixOS dotfiles
git clone https://git.echoz.io/dot.git
Log | Files | Refs

commit 7050785c2341fa550ccb49a4b0ed4770bb35694e
parent e2efe0f25cdffd9522de587388d28baa35e1c95a
Author: Chris <chris@echoz.io>
Date:   Thu,  5 Mar 2026 20:19:11 +0100

refactor(bluetooth): move to common module

Diffstat:
Mhosts/tp/default.nix | 2--
Mhosts/ws/default.nix | 2--
Amodules/bluetooth/default.nix | 4++++
3 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/hosts/tp/default.nix b/hosts/tp/default.nix @@ -55,8 +55,6 @@ hardware = { enableAllFirmware = true; cpu.intel.updateMicrocode = true; - - bluetooth.enable = true; }; home-manager.users.${user} = { diff --git a/hosts/ws/default.nix b/hosts/ws/default.nix @@ -60,8 +60,6 @@ cpu.amd.updateMicrocode = true; amdgpu.initrd.enable = true; - bluetooth.enable = true; - printers = { ensurePrinters = [ { diff --git a/modules/bluetooth/default.nix b/modules/bluetooth/default.nix @@ -0,0 +1,4 @@ +{ + hardware.bluetooth.enable = true; + environment.persistence."/fix".directories = [ "/var/lib/bluetooth" ]; +}