nix-dotfiles/hosts/common/services/dbus.nix

12 lines
151 B
Nix
Raw Normal View History

{ pkgs, ... }:
{
services.dbus = {
enable = true;
2024-12-05 20:30:56 +01:00
implementation = "broker";
packages = with pkgs; [
gcr
dconf
];
};
}