nix-dotfiles/hosts/common/services/dbus.nix
2024-12-05 20:30:56 +01:00

12 lines
151 B
Nix

{ pkgs, ... }:
{
services.dbus = {
enable = true;
implementation = "broker";
packages = with pkgs; [
gcr
dconf
];
};
}