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

11 lines
120 B
Nix
Raw Normal View History

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