From 410e151ba4b8052bd0f292ab8b5edbed3833e233 Mon Sep 17 00:00:00 2001 From: Austin Horstman Date: Fri, 4 Apr 2025 08:59:53 -0500 Subject: [PATCH] hardware.bluetooth: fix configuration directory mode bluetooth.service: ConfigurationDirectory 'bluetooth' already exists but the mode is different. (File system: 755 ConfigurationDirectoryMode: 555) --- nixos/modules/services/hardware/bluetooth.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/nixos/modules/services/hardware/bluetooth.nix b/nixos/modules/services/hardware/bluetooth.nix index d8907d554d33..518c129dc405 100644 --- a/nixos/modules/services/hardware/bluetooth.nix +++ b/nixos/modules/services/hardware/bluetooth.nix @@ -151,6 +151,7 @@ in CapabilityBoundingSet = [ "CAP_NET_BIND_SERVICE" # sockets and tethering ]; + ConfigurationDirectoryMode = "0755"; NoNewPrivileges = true; RestrictNamespaces = true; ProtectControlGroups = true;