mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-17 09:34:36 +00:00
nixos/dbus: Avoid redundant output specification
- Do not use `daemon`, it has been synonymous to `out` since783c40eb68
- Do not use explicit `out` output, it has been default sincea17216af4c
(originally introduced in2132c86c45
)
This commit is contained in:
parent
43f34da079
commit
5acdf85467
@ -68,7 +68,6 @@ in
|
||||
|
||||
config = lib.mkIf cfg.enable {
|
||||
environment.systemPackages = [
|
||||
pkgs.dbus.daemon
|
||||
pkgs.dbus
|
||||
];
|
||||
|
||||
@ -84,11 +83,11 @@ in
|
||||
users.groups.messagebus.gid = config.ids.gids.messagebus;
|
||||
|
||||
systemd.packages = [
|
||||
pkgs.dbus.daemon
|
||||
pkgs.dbus
|
||||
];
|
||||
|
||||
security.wrappers.dbus-daemon-launch-helper = {
|
||||
source = "${pkgs.dbus.daemon}/libexec/dbus-daemon-launch-helper";
|
||||
source = "${pkgs.dbus}/libexec/dbus-daemon-launch-helper";
|
||||
owner = "root";
|
||||
group = "messagebus";
|
||||
setuid = true;
|
||||
@ -97,7 +96,7 @@ in
|
||||
};
|
||||
|
||||
services.dbus.packages = [
|
||||
pkgs.dbus.out
|
||||
pkgs.dbus
|
||||
config.system.path
|
||||
];
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user