From 72559655e60d7246d2ab69b9a6331caafb7d2cd5 Mon Sep 17 00:00:00 2001 From: Joel Grunbaum <joelgrun@gmail.com> Date: Wed, 16 Jul 2025 12:55:29 +0000 Subject: [PATCH] Enable bluetooth --- rpi-nixos/hardware-configuration.nix | 16 +++++----------- 1 files changed, 5 insertions(+), 11 deletions(-) diff --git a/rpi-nixos/hardware-configuration.nix b/rpi-nixos/hardware-configuration.nix index 649af25..8c36015 100644 --- a/rpi-nixos/hardware-configuration.nix +++ b/rpi-nixos/hardware-configuration.nix @@ -25,12 +25,11 @@ options = [ "fmask=0077" "dmask=0077" ]; }; - boot.zfs.extraPools = [ "pool" ]; - -# fileSystems."/var/lib/docker" = -# { device = "/pool/docker/var"; -# options = [ "bind" ]; -# }; + fileSystems."/pool" = + { device = "/dev/disk/by-uuid/8c98df84-c85c-401b-8d44-4cec5a87fd82"; + fsType = "bcachefs"; + options = [ "compression=zstd" ]; + }; swapDevices = [ ]; @@ -41,11 +40,6 @@ }; }; - services.zfs = { - autoScrub.enable = true; - trim.enable = true; - }; - # Enables DHCP on each ethernet and wireless interface. In case of scripted networking # (the default) this is the recommended approach. When using systemd-networkd it's # still possible to use this option, but it's recommended to use it in conjunction -- Gitblit v1.10.0