blob: 8b25bf9548539017c3e07b7f8e9a5d5a5a075bb8 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
{ pkgs, ... }:
{
services.dbus = {
enable = true;
implementation = "broker";
packages = with pkgs; [
dconf
gcr
udisks2
# flatpak
# xdg-desktop-portal
];
};
}
|