12 lines
151 B
Nix
12 lines
151 B
Nix
{ pkgs, ... }:
|
|
{
|
|
services.dbus = {
|
|
enable = true;
|
|
implementation = "broker";
|
|
packages = with pkgs; [
|
|
gcr
|
|
dconf
|
|
];
|
|
};
|
|
}
|