From be2a4f37af10d36cc02ab66fd955f07b2ed7d53e Mon Sep 17 00:00:00 2001 From: Julian Stecklina Date: Tue, 17 Oct 2023 12:09:12 +0200 Subject: nixos/dbus: explicitly set homeMode for dbus Otherwise /run/dbus is created with the wrong permissions. For some reason our recent changes made /run/dbus be 0700 instead of 0755. This is actually the default of homeMode. So something worked by accident before? --- nixos/modules/services/system/dbus.nix | 1 + 1 file changed, 1 insertion(+) (limited to 'nixos/modules/services') diff --git a/nixos/modules/services/system/dbus.nix b/nixos/modules/services/system/dbus.nix index b47ebc92f93a..e8f8b48d0337 100644 --- a/nixos/modules/services/system/dbus.nix +++ b/nixos/modules/services/system/dbus.nix @@ -95,6 +95,7 @@ in uid = config.ids.uids.messagebus; description = "D-Bus system message bus daemon user"; home = homeDir; + homeMode = "0755"; group = "messagebus"; }; -- cgit 1.4.1