mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-19 08:36:41 +01:00
makeDBusConf: make apparmor argument optional
The only in-tree use of this is the DBus NixOS module, which always passes apparmor (but the services.dbus.apparmor option defaults to "disabled"). Set the default in the function as well so other users of the function can take advantage of it.
This commit is contained in:
parent
7c845e60cd
commit
59420d6b6f
1 changed files with 1 additions and 1 deletions
|
@ -14720,7 +14720,7 @@ in
|
|||
dbus-sharp-glib-1_0 = callPackage ../development/libraries/dbus-sharp-glib/dbus-sharp-glib-1.0.nix { };
|
||||
dbus-sharp-glib-2_0 = callPackage ../development/libraries/dbus-sharp-glib { };
|
||||
|
||||
makeDBusConf = { suidHelper, serviceDirectories, apparmor }:
|
||||
makeDBusConf = { suidHelper, serviceDirectories, apparmor ? "disabled" }:
|
||||
callPackage ../development/libraries/dbus/make-dbus-conf.nix {
|
||||
inherit suidHelper serviceDirectories apparmor;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue